function validate(theForm)
	{
		if (document.cookie.length > 0){
			theForm.str.value = "1"
		}
		else{
			theForm.str.value = "0"
		}
		if(isBlank(theForm.Userid.value))
		{
			alert("You must enter a UserName for Login");
			theForm.Userid.focus();
			return false;
		}

		if(isBlank(theForm.Password.value))
		{
			alert("You must enter a Password for Login");
			theForm.Password.focus();
			return false;
		}
		return true;
	}
	
function fig(thefile,thename,thewidth,theheight)
{
	var aWindow = window.open("", thename,"width=" + thewidth + ",height=" + theheight + ",directories=no,toolbar=no,resizable=no,menubar=no,scrollbars=yes,title=yes,resizable=yes");
	
	if (navigator.appName == 'Netscape')
	{	
		aWindow.location.href = thefile;
	}
	if( aWindow.location.href == "about:blank" )
	{
		aWindow.location.replace( thefile );
	}
}
