// JavaScript Document
function validaContactenos(){
	RESTRICTIONS = new Array();
	RESTRICTIONS.push(new NotNull('nombre', 'Debe ingresar su nombre'));
	RESTRICTIONS.push(new NotNull('apellido', 'Debe ingresar su apellido'));
	RESTRICTIONS.push(new NotNull('email', 'Debe ingresar su email'));
	RESTRICTIONS.push(new EmailField('email', 'El formato del email no es válido [xxxx@xxxx.xxx]'));
	RESTRICTIONS.push(new NotNull('telefono', 'Debe ingresar su teléfono'));
	RESTRICTIONS.push(new NumericField('telefono', 'Debe ingresar un valor numérico para teléfono'));
	RESTRICTIONS.push(new NotNull('ciudad', 'Debe ingresar su ciudad'));
	RESTRICTIONS.push(new NotNull('pais', 'Debe ingresar su Pais'));
	doValidations('http://tyco.uncompany.net/sendForm.php');
}
function validaCotizacion(){
	RESTRICTIONS = new Array();
	RESTRICTIONS.push(new NotNull('nombre', 'Debe ingresar su nombre'));
	RESTRICTIONS.push(new NotNull('apellido', 'Debe ingresar su apellido'));
	RESTRICTIONS.push(new NotNull('email', 'Debe ingresar su email'));
	RESTRICTIONS.push(new EmailField('email', 'El formato del email no es válido [xxxx@xxxx.xxx]'));
	RESTRICTIONS.push(new NotNull('telefono', 'Debe ingresar su teléfono'));
	RESTRICTIONS.push(new NumericField('telefono', 'Debe ingresar un valor numérico para teléfono'));
	RESTRICTIONS.push(new NotNull('ciudad', 'Debe ingresar su ciudad'));
	doValidations('http://tyco.uncompany.net/sendForm.php');
}