function validarcontacto()
{
    if(document.form.name.value.length < 1)
	{
		document.getElementById('nombrejs2').style.border = '#FF0000 1px solid';
		document.getElementById('nombrejs2').style.background = '#FF8080';
        document.form.nombre.focus(); 
        return 0; 
    }
	    if(document.form.mail.value.length < 1)
	{ 
		document.getElementById('mailjs2').style.border = '#FF0000 1px solid';	
	    document.getElementById('mailjs2').style.background = '#FF8080';
        document.form.marca.focus(); 
        return 0; 
    }
	    if(document.form.text.value.length < 1)
	{ 
		document.getElementById('textjs2').style.border = '#FF0000 1px solid';	
	    document.getElementById('textjs2').style.background = '#FF8080';
        document.form.marca.focus(); 
        return 0; 
    }
		else
	{ 
        document.form.submit(); 
    }	
}