var newWindow=null;

 function setURL(theForm){
        var actionURL="";
        if(theForm.name==="mp"){
	if(theForm.username.value===""){
		alert("Please Enter UserID");
		theForm.username.focus();	
		return false;
	}
	else if(theForm.password.value===""){
		alert("Please Enter Password");
		theForm.password.focus();	
		return false;
	}
	theForm.login_username.value=theForm.username.value;
	theForm.secretkey.value=theForm.password.value;
	theForm.username.value="";
	theForm.password.value="";
	actionURL = "http://mp.nic.in/src/redirect.php";
        }
        else{
	if(theForm.login_username.value===""){
		alert("Please Enter UserID");
		theForm.login_username.focus();	
		return false;
	}
	else if(theForm.secretkey.value===""){
		alert("Please Enter Password");
		theForm.secretkey.focus();	
		return false;
	}
	theForm.username.value=theForm.login_username.value;
	theForm.password.value=theForm.secretkey.value;
	theForm.login_username.value="";
	theForm.secretkey.value="";
	actionURL = "https://mail.nic.in/mail/mauth";
        }
	theForm.target="_blank";
	theForm.action = actionURL;
return true;
}




function stopError(){
	newWindow=null;
	return false;
}

function closeWindow(){
//	opener.newWindow=null;
	window.close();
}

function goBack(){
	window.history.back();
}

function openSite(siteAdd){
	newWindow = window.open(siteAdd,"newWindow2","status=yes,toolbar=yes,location=yes,resizable=yes,scrollbars=yes,width=580,height=200"); 
	newWindow.focus();
}