
<!-- INHABILITAR BOTON DERECHO DEL MOUSE-->
document.oncontextmenu=inhabilitar 

<!-- INHABILITAR BOTON DERECHO DEL MOUSE-->
function inhabilitar(){ 
    alert ("Copyright Information\n\n VENTURA2B.COM © 2011-2012") 
    return false 
}
<!-- BOOKMARK -->
function agregar(){ 
if ((navigator.appName=="Microsoft Internet Explorer") && (parseInt(navigator.appVersion)>=4)) { 
	var url="http://www.ventura2b.com/"; 
	var titulo="VENTURA2B.COM Internet para Negocios"; 
	window.external.AddFavorite(url,titulo); 
} else { 
	if(navigator.appName == "Netscape") 
		alert ("Presione Crtl+D para agregar este sitio en sus Bookmarks"); 
	} 
} 

<!-- VALIDAR FORM DE CONTACTO-->
function validar(){ 
    //validar Nombre
    if (document.contacto.nombre.value.length==0){ 
       alert("Por Favor indique su Nombre") 
       document.contacto.nombre.focus() 
       return 0; 
       } 
    //validar TELEFONOS
    if (document.contacto.telefonos.value.length==0){ 
       alert("Por Favor indique algun Telefono") 
       document.contacto.telefonos.focus() 
       return 0; 
       } 	   
   //validar Email
    if (document.contacto.ecliente.value.length<7){ 
       alert("Debe indicar un e-mail valido") 
       document.contacto.ecliente.focus() 
       return 0; 
       } 
    //enviar formulario
    document.contacto.submit(); 
} 
function fcontacto(){ 
window.open("0-include/fcontacto.php","CONTACTO","width=450,height=500,top=120,left=185,scrollbars=NO,titlebar=NO,resizable=NO,toolbar=NO,menubar=no,directories=NO,location=NO,status=NO")
}
