// JavaScript Document

var valor = '';
function compruebaFormContacto(){
	error = false;
	nombreC = document.getElementById('nombreC').value;
	telefono = document.getElementById('telefono').value;
	email = document.getElementById('email').value;
	asunto = nombre = document.getElementById('asunto').value;
	if(nombreC=='' || validaTelefono(telefono) || validarEmail(email) || asunto==''){
		error = true;
	}
	else{
		error = false;
	}
	if(error == true){
		document.getElementById('mesage').innerHTML = 'Nombre, Teléfono, Email y Asunto deben ser rellenos. Gracias.';
	}
	else{
		document.getElementById('mesage').innerHTML = '';
		document.contacto.submit();
	}
}

function validarEmail(valor){
	re=/^[_a-z0-9-]+(.[_a-z0-9-]+)*@[a-z0-9-]+(.[a-z0-9-]+)*.(.[a-z]{2,3})$/
    if(!re.exec(valor)){
        return true;
    }else{
        return false;
    }

}

function validaTelefono(valor){
	re=/^([-0-9 .]{9,13})$/
	if(!re.exec(valor)){
        return true;
    }else{
        return false;
    }
}

function mostrarCapa(capa){
	if(valor==''){
		valor = document.getElementById('cuerpoExterior').innerHTML;
	}
	if(capa=='Formulario' && valor!=''){		
		document.getElementById('cuerpoExterior').innerHTML = valor;
	}
	else if(capa=='Valdemoro'){
		document.getElementById('cuerpoExterior').innerHTML = '<iframe width="645" height="525" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.es/maps?f=q&amp;source=s_q&amp;hl=es&amp;geocode=&amp;q=CALVOGAR&amp;aq=&amp;sll=40.182182,-3.672995&amp;sspn=0.012246,0.032938&amp;g=C%2FPortugal+65,+Valdemoro&amp;ie=UTF8&amp;ll=40.187223,-3.670012&amp;spn=0.012246,0.032938&amp;z=14&amp;iwloc=A&amp;cid=17330492092070957458&amp;output=embed"></iframe><!--div id="cerrar"><a href="javascript:mostrarCapa(\'Formulario\')">Volver</a></div-->';
	}
	else if(capa=='Fuenlabrada'){
		document.getElementById('cuerpoExterior').innerHTML = '<iframe width="645" height="525" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=CALVOGAR&amp;aq=&amp;sll=40.303684,-3.795519&amp;sspn=0.028997,0.076818&amp;ie=UTF8&amp;hq=calvogar&amp;hnear=&amp;ll=40.300182,-3.793231&amp;spn=0.028998,0.076818&amp;z=14&amp;iwloc=A&amp;cid=15379596034447472517&amp;output=embed"></iframe><!--div id="cerrar"><a href="javascript:mostrarCapa(\'Formulario\')">Volver</a></div-->';
	}
	else if(capa=='LasRozas'){
		document.getElementById('cuerpoExterior').innerHTML = '<iframe width="645" height="525" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.es/maps?f=q&amp;source=s_q&amp;hl=es&amp;geocode=&amp;q=c%2Festacion+3,+las+rozas&amp;aq=&amp;sll=40.494704,-3.871508&amp;sspn=0.001979,0.004823&amp;ie=UTF8&amp;hq=&amp;hnear=Calle+de+la+Estaci%C3%B3n,+3,+28231+Las+Rozas+de+Madrid,+Madrid,+Comunidad+de+Madrid&amp;ll=40.494792,-3.871279&amp;spn=0.001032,0.002411&amp;z=14&amp;output=embed"></iframe>';
	}
}



