function validate()
{
	if(document.loginform.login.value.replace(/ /g,"")=="" && document.loginform.passwd.value=="")
	{
		alert("Please enter valid Username and Password");
		document.loginform.login.value=""
		document.loginform.login.focus();
		return false;
	}

	if(document.loginform.login.value.replace(/ /g,"")=="")
	{
		alert("Please enter valid Username");
		document.loginform.login.value=""
		document.loginform.login.focus();
		return false;
	}
	if(document.loginform.passwd.value=="")
	{
		alert("Please enter valid Password");
		document.loginform.passwd.value=""
		document.loginform.passwd.focus();
		return false;
	}
	 else {
		document.loginform.submit();
	  }
 }
function PasswdRemindWin()
{
window.open("http://login.rediff.com/cgi-bin/passwd_remind.cgi?FormName=showlogin","win1","toolbar=no,directories=no,resize=yes,menubar=no,location=no,scrollbars=yes,width=490,height=480,maximize=null,top=70,left=80");
}
