
var fieldsArray = new Array();
	fieldsArray[0] = "0";
	fieldsArray[1] = "0";
	fieldsArray[2] = "0";
	fieldsArray[3] = "0";

function validarEmail(valor) {
	if (valor == "" || valor == null || !isNaN(valor) || valor.charAt(0) == ' ' || /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(valor)) 
		{	
		document.getElementById("validate_mail").innerHTML = "<img src='art/contact/ok.gif' width='14' height='14' border='0'>";
		fieldsArray[0] = "1";}
	else {
		document.getElementById("validate_mail").innerHTML = "<img src='art/contact/error.gif' width='14' height='14' border='0'>&nbsp;La dirección de email es incorrecta";
		window.document.myForm.from_email.value = "";
		window.document.myForm.from_email.focus();		
		window.document.myForm.from_email.select();}
		}

function validateName(valor) {
	if (valor == "" || valor == null || !isNaN(valor) || valor.charAt(0) == ' ')
	{
		document.getElementById("validate_name").innerHTML = "<img src='art/contact/error.gif' width='14' height='14' border='0'>&nbsp;La dirección de email es incorrecta";
		window.document.myForm.nombre.value = "";
		window.document.myForm.nombre.focus();		
		window.document.myForm.nombre.select();}
	else {
		document.getElementById("validate_name").innerHTML = "<img src='art/contact/ok.gif' width='14' height='14' border='0'>";
		fieldsArray[1] = 1;}
		}


function validartelephone(valor) {
	if (valor == "" || valor == null || valor.charAt(0) == ' ')
	{
		document.getElementById("validate_phone").innerHTML = "<img src='art/contact/error.gif' width='14' height='14' border='0'>&nbsp;incluya su telefono";
		window.document.myForm.telefono.value = "";
		window.document.myForm.telefono.focus();		
		window.document.myForm.telefono.select();}
	else {		
		document.getElementById("validate_phone").innerHTML = "<img src='art/contact/ok.gif' width='14' height='14' border='0'>";
		fieldsArray[2] = 1;}
}

function validarComment(valor) {
	if (valor == "" || valor == null || !isNaN(valor) || valor.charAt(0) == ' ')
	{
		document.getElementById("validate_comment").innerHTML = "<img src='art/contact/error.gif' width='14' height='14' border='0'>&nbsp;Agregue su comentario";
		window.document.myForm.consulta.value = "";
		window.document.myForm.consulta.focus();		
		window.document.myForm.consulta.select();}
	else {
		document.getElementById("validate_comment").innerHTML = "<img src='art/contact/ok.gif' width='14' height='14' border='0'>";
		fieldsArray[3] = 1;}
}




function validateForm() {
	//var fieldsArray = new array();
	//var authArray = new Array();

		if (fieldsArray[0] == 1 && fieldsArray[1] == 1 && fieldsArray[2] == 1 && fieldsArray[2] == 1) {document.myForm.submit(); document.getElementById("sendbutton").src='art/contact/enviar2.png';}
		else {document.getElementById("validate_all").innerHTML = "Hay campos sin llenar";}
		
		
		}
	
	
	
