function ValidarEmail(email){
	var arrobas=0;
	var i;
	var pos_arroba=0;
	var pos_punto=0;
	var TienePunto=false;

	for (i=0;i<email.length;i++){
		
		if (email.charAt(i) == "@"){
			 arrobas+=1;
			 pos_arroba=i;
		}
		if (email.charAt(i) == "."){
			TienePunto=true; 
			pos_punto=i;
		}
		
	}
	
	if (TienePunto && arrobas == 1 && (pos_arroba < pos_punto - 1 )) return true;//email valido
	
	return false;
}
function Chequeo()
{
	errorChequeo = false;
	
	if (document.enviar.nombre.value == ""){
		errorChequeo = true;
		window.alert("Por favor, introduce un nombre");
		document.enviar.nombre.focus();
	}
	if (document.enviar.email.value == ""){
		errorChequeo = true;
		window.alert("Por favor, introduce un eMail");
		document.enviar.email.focus();
	}
	if (errorChequeo == false && ! ValidarEmail(document.enviar.email.value)) {
		errorChequeo = true;
		window.alert("Por favor, introduce un eMail válido");
		document.enviar.email.focus();
	}
		if (errorChequeo)
		return(false);
	else
		return(true);
}
function openwindow()
{
window.open("http://www.webmarkez.com/imagenes/presentacion.htm",
	"Webmarkez","location=1,status=0,scrollbars=0,width=890,height=730");
}
function HideContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "none";
}
function ShowContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "block";
}
