<!--
function VerifyEmail(stremail){
	if(stremail.indexOf("@")== -1 || stremail.indexOf(".")== -1)
	{
		alert("Please type a valid e-mail address!");
	}
	else 
	popupmodulo("/_hi/_in/checkmail.aspx?email="+ stremail ,"vortex",380,160,100,100);	
}

function popupmodulo(url, name, x, y, h, g) {
	window.open(url,name,"location=no,toolbar=no,directories=no,menubar=no,resizable=no,scrollbars=no,status=no,width="+x+",height="+y+",top="+h+",left="+g);
}

function VerifyEmailNavDroite(){
	//stremail = (document.all) ? document._ServerForm.Email.value : document.layers["nav1"].document._ServerForm.Email.value
	stremail = document.getElementById('Email').value
	if(stremail.indexOf("@")== -1 || stremail.indexOf(".")== -1){
		alert("Please type a valid e-mail!");
	}
	else {
		popupmodulo("/_hi/_in/checkmail.aspx?email="+ stremail ,"vortex",380,160,100,100);	
	}
}
//-->