function send_check() 
{
	var em=document.contact.fromid.value 		
	
	if ((em.indexOf("@",0) < 0) || (em.indexOf(".",0) < 0) || (em.length < 5)) 
	{
		alert("Enter proper E-Mail address")
		document.contact.fromid.value = ""
		document.contact.fromid.focus()
	}
    
    else if (document.contact.body.value == "") 
    {
		alert ("Enter the mail content")
		document.contact.body.focus()
	}
	else
	{
	document.contact.submit()
	}
}
