// JavaScript Document

//valida formulario

function valida_envia(){
	//valido el nombre
	if (document.getElementById("fvalida").nombre.value.length==0){
		alert("Por favor, escriba su nombre.")
		document.getElementById("fvalida").nombre.focus()
		return 0;
	}

	if (document.getElementById("fvalida").telefono.value.length==0){
		alert("Por favor, escriba su teléfono.")
		document.getElementById("fvalida").telefono.focus()
		return 0;
	}
	
		if (document.getElementById("fvalida").motivo.value.length==0){
		alert("Por favor, escriba su motivo de contacto.")
		document.getElementById("fvalida").motivo.focus()
		return 0;
	}
	
//el formulario se envia

	document.getElementById("fvalida").submit();
}


// desactivar seleccion de texto

function disableselect(e)
{
   return false
}
function reEnable()
{
   return true
}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar)
{
   document.onmousedown=disableselect
   document.onclick=reEnable
}

// desactivar boton derecho
var mensaje = "[Copyright © 1985-2007 JGILABERT, SA]";
function derecho(e)
{
if (navigator.appName == 'Netscape' && e.which == 3)
alert(mensaje);
else if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2)
alert(mensaje);
}
document.onmousedown = derecho;