/******************************************************************************
* functions.js								      *
*                                                                             *
* Copyright 2008 by cetana.com				      *
* Visit http://www.cetana.com					      *
*                                                                             *
* Provides functions for the website which will work on both Netscape	      *
* Communicator and Internet Explorer browsers (version 5.5 and up).  	      *
*									      *
******************************************************************************/

//-----------------------------------------------------------------------------
// contact us 
//-----------------------------------------------------------------------------

function Contact(){

    if(document.FormContact.Name.value==''){
    document.FormContact.Name.focus();
    alert("Please make sure Name is not left blank");
   	return false;
    }
	if (window.document.FormContact.Email.value.indexOf('.')=="-1" || window.document.FormContact.Email.value.indexOf('@')=="-1")
	{
	alert("Please enter your Email properly!")
	window.document.FormContact.Email.focus();
	return false;	
	}
	if(document.FormContact.Message.value==''){
    document.FormContact.Message.focus();
    alert("Please make sure Message is not left blank");
   	return false;
	}
	else{
    document.FormContact.action="confirmation.php";
    document.FormContact.submit();
    }

}
