// South Express S.A.

/// Contactos

objects = document.getElementsByTagName("object");
for (var i = 0; i < objects.length; i++)
{
    objects[i].outerHTML = objects[i].outerHTML;
} 

function verifica() {
if ((document.Form1.nombre.value == "") || (document.Form1.nombre.value== null)) {
alert("Por favor, ingrese su nombre");
document.Form1.nombre.focus();
return false;
}
else
if ((document.Form1.apellido.value == "") || (document.Form1.apellido.value== null)) {
alert("Por favor, ingrese su apellido");
document.Form1.apellido.focus();
return false;
}

if ((document.Form1.ciudad.value == "") || (document.Form1.ciudad.value== null)) {
alert("Por favor, ingrese la ciudad");
document.Form1.ciudad.focus();
return false;
}

if ((document.Form1.telefono.value == "") || (document.Form1.telefono.value== null)) {
alert("Por favor, ingrese su teléfono");
document.Form1.telefono.focus();
return false;
}

if ((document.Form1.email.value == "") || (document.Form1.email.value== null)) {
alert("Por favor, ingrese su e-mail");
document.Form1.email.focus();
return false;
}

if ((document.Form1.consulta.value == "") || (document.Form1.consulta.value== null)) {
alert("Por favor, ingrese su consulta");
document.Form1.consulta.focus();
return false;
}

else
return true;
}

/// end hiding script from old browsers

var contador = 0;
function enviar_formulario() {
if( contador < 1) {
	contador++;
	document.form.Submit.status = false;
	document.form.Submit.value = " Enviando... ";
	return true;
	}
else
	{
	return false;
	}
}


