function mouseover()
{
	var name=document.search.keyword.value;
	if(name!='')
	{
		document.search.keyword.value='';
		document.search.keyword.focus();
		 return false;
	}
}
function validateField()
{
	var login=document.frmlogin.txtusername.value;
	
	if(login=="")
	{
		alert("Please enter the user name");
		document.frmlogin.txtusername.focus();
		return false;
	}
	if(document.frmlogin.txtpassword.value=="")
	{
		alert("Please enter the password");
		document.frmlogin.txtpassword.focus();
		return false;
	}

}
function validateClubs(){
 	 
	if(document.frmclubs.txtpassword.value=="")
	{
		alert("Please enter the password");
		document.frmclubs.txtpassword.focus();
		return false;
	}
	document.frmclubs.submit();
}