<!--
var br;
var check=false
if (parseInt(navigator.appVersion)>=4){
	if (navigator.appName=="Netscape") {br = "NS"} else {br = "IE"} }
	
	if(self != window.top) {window.top.location.replace ("index.asp");}
function MyValidation()
{
if (document.forms[0].projectloginname.value=="")
{
alert("Provide Project name, please")
document.forms[0].projectloginname.focus()
check=false
return false
}
else if (document.forms[0].password.value=="")
{
alert("Provide Password, please")
document.forms[0].password.focus()
check=false
return false
}
else
{
check=true
document.forms[0].submit()
return true
}
}
function MyCheck()
{
if (check)
{
document.forms[0].submit()
}
}
//-->
