// JavaScript Document
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
  return false;
}
//-->
function check(f)
{
	var msg = "";
	//var f = document.f;
	if (f.NOMBRE.value=="") { msg += "Por favor, indique su nombre.\n"; }
	if (f.APELLIDOS.value=="") { msg += "Por favor, indique sus apellidos.\n"; }
	if (f.TELEFONO.value=="") { msg += "Por favor, indique su telefono de contacto.\n"; }
	if (msg!="") { 
	alert(msg);
	return false;
	}
	
	else
	{
	f.submit();
	}
}

var navegador = navigator.appName
if (navegador == "Microsoft Internet Explorer")
{
}
else
{
document.write("<style type='text/css'> div#caja{text-align: -moz-center;}</style>");
}

