function enviaCorreo() {
	responsable = document.frmContacto.responsable.value;
	telefono = document.frmContacto.telefono.value;
	if (telefono=='' || responsable=='' || telefono=='Teléfono de contacto' || responsable=='Empresa/Responsable') {
		alert("Por favor, introduzca un nombre y un dato de contacto."); 
		return;
	} else {
		window.open("enviaContacto.php?responsable="+responsable+"&telefono="+telefono,"contacto","resizable=no,width=350,height=250,left=280,top=150");
	}
}

function abrefoto(foto) {
	window.open("zoom.php?foto="+foto,"zoom","resizable=no,width=800,height=600,left=280,top=150");
}

function avisolegal() {
	window.open("avisolegal.html","aviso","resizable=no,width=800,height=600,left=280,top=150");
}

function favoritos() {
	window.external.AddFavorite('http://www.metalcotarelo.com','Construcciones Metálicas Cotarelo');
}