<!--
function MM_openBrWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}
window.name="mywild";
//-->
function fnCheckMail()
{
	if(tellafriend.frnds_email.value=="")
		{
			alert("Please enter the E-mail");		
			tellafriend.frnds_email.focus()
			return false;
		}
		else
		{		
			var email = tellafriend.frnds_email.value;					
			var matcharray = email.match(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z]+)*\.[A-Za-z]+$/) 
			if(matcharray==null)
			{			
				alert("Please enter a valid E-mail address");
				tellafriend.frnds_email.focus();
				tellafriend.frnds_email.select();
				return false;
			}
			else 
				return true;
		}
}