function verifForm()
{
	if(document.sendfriend["SENDFRIEND[yourmail]"].value =="")
	{
		mess = " Email – Please enter this information !!!";
		alert(mess);
		return false
	}
	else
	{
		if(!verifmail(document.sendfriend["SENDFRIEND[yourmail]"].value))
		{
			mess = " Your email address is invalid !!!";
			alert(mess);
			return false;
		}
	}
	
	if(document.sendfriend["SENDFRIEND[contactmail]"].value =="")
	{
		mess = " Email Friend – Please enter this information !!!";
		alert(mess);
		return false
	}
	else
	{	
		if(!verifmail(document.sendfriend["SENDFRIEND[contactmail]"].value))
		{
			mess = "Your email friend address is invalid !!!";
			alert(mess);
			return false;
		}
	}
	
	if(document.sendfriend["SENDFRIEND[objmail]"].value =="")
	{
		mess = " Subject – Please enter this information !!!";
		alert(mess);
		return false
	}
	
	if(document.sendfriend["SENDFRIEND[messmail]"].value =="")
	{
		mess = " Comment – Please enter this information !!!";
		alert(mess);
		return false
	}

	
return true;
}

function verifmail(email)
{
	
	  var maReg = new RegExp ( "^\\w[\\w+\.\-]*@[\\w\-]+\.\\w[\\w+\.\-]*\\w$", "gi" ) ;
  
	  if(email.search(maReg)==-1){return false;}
	  else {return true;}
	
}
