function abrirPopup(id)
{
	document.getElementById(id).style.left=document.body.clientWidth/2-218+'px'; 
	document.getElementById(id).style.bottom=document.body.clientHeight/2-225+'px'; 
	document.getElementById(id).style.display='block';
	shortcut.add("esc",function() {
	    cerrarPopup(id);
		});
}
function cerrarPopup(id)
{
	shortcut.remove("esc");
	document.getElementById(id).style.display='none';
}
function validarForm()
{
	var nombre = document.getElementById('nombre').value;
	var apellidos = document.getElementById('apellidos').value;
	var email = document.getElementById('email').value;
	var telefono = document.getElementById('telefono').value;
	var fax = document.getElementById('fax').value;
	var empresa = document.getElementById('empresa').value;

	if (nombre == "" || apellidos == ""	)
		alert ("Los campos 'Nombre' y 'Apellidos' son obligatorios.");
	else if (email == "" && telefono == "" && fax == "")
		alert ("Al menos una forma de contacto () es obligatorio");
	else
		document.getElementById('contacto').submit();
}
function validarMailAmigo()
{
	var mail = document.getElementById('email').value;

	var filter=/^[A-Za-z][A-Za-z0-9_]*@[A-Za-z0-9_]+\.[A-Za-z0-9_.]+[A-za-z]$/;
	if (mail.length == 0 )
	{
		alert("That is not a valid e-mail address.");
		document.getElementById('email').focus();
	} 
	else if (filter.test(mail))
	{
		document.getElementById('contacto').submit();
	}
	else
	{
		alert("That is not a valid e-mail address.");
		document.getElementById('email').focus();
	}
}
