// JavaScript Document
function chkget()
{
	var msg="";
	var email=document.footer.email.value;
	
	if(email=="Your Email ID...")
	{
		
		msg+="Enter the Email ID \n";
       
		
	}
	else
	{
		document.footer.email.style.background ="";
	}
	
	if(msg!="")
	{
		alert(msg);
		return false;
	}
	else
	{
		document.footer.submit();
	    return true;
	}
	
}
