
function monthRequired(oSrc, args){
	value = parseInt(args.Value)
	if(value == -1)
	{
		args.IsValid = false;
	}
	else
	{
		args.IsValid = true;
	}
}

function dayRequired(oSrc, args){
	value = parseInt(args.Value)
	if(value == -1)
	{
		args.IsValid = false;
	}
	else
	{
		args.IsValid = true;
	}
}

function redirTimer() 
{
	redirTime = "15000";
	redirURL = "/";
	self.setTimeout("self.location.href = redirURL;",redirTime);
}

function redirSignIn() 
{
	redirTime = "15000";
	redirURL = "/SignIn.aspx";
	self.setTimeout("self.location.href = redirURL;",redirTime);
}

function  SetWndName()
{
	window.name = "wsqMainWnd"; 
}