<!--
function isPrintOk() 
{
	var ok=1;
	if (document.mail.email.value.search(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+/) == -1)
	{
		alert("El email dado no es correcto.");
		document.mail.email.value="(digite su email aquí)";
		document.mail.email.select();
		ok=0;	
	}
	if (ok == 1){
	print(document); document.mail.submit();}
}

function getGenID() //attach the affiliate id if any
{
	var gen = GetCookie();
	if(!gen) return;
	var pos = gen.indexOf("=");
	var value = gen.substr(pos+1);	//starting at the index after = to the end
	document.mail.gen.value = value;
	//alert(document.mail.gen.value);
}
//-->