function emailvalidation( obj, eMailObj, entered )
{
	with( eMailObj )
	{
		if( value.length == 0 )
		{
			return true;
		}
		apos = value.indexOf("@");
		dotpos = value.lastIndexOf(".");
		lastpos = value.length-1;
		if( apos<1 || dotpos-apos<2 || lastpos-dotpos>3 || lastpos-dotpos<2 )
		{
//			alert( "Please enter your e-mail address in the format yourname@domain.com" );
			return false;
		}
		else
		{
			return true;
		}
	}
}
