// Javascript Bongojuegos.com
//ruta = "http://localhost/";
ruta = "http://www.bongojuegos.com/";

function buscar(){

	if(document.getElementById("buscar").value.length < 2 || document.getElementById("buscar").value == 'Buscar juegos...')
	alert("La búsqueda debe tener como mínimo 2 letras");
	else
	window.location=ruta+'index.php?busqueda='+document.getElementById("buscar").value;
	
}

function comprobar_enter(e) {
tecla = (document.all) ? e.keyCode : e.which;
if (tecla==13)buscar();
}

function validar(){
	if(document.busqueda.elements[0].value==""){
	alert("Debe introducir algún valor para la búsqueda.");
	}
}

function agregar(){
   if ((navigator.appName=="Microsoft Internet Explorer") && (parseInt(navigator.appVersion)>=4)) {
      var url="http://www.bongojuegos.com/";
      var titulo="Bongojuegos, tu portal de juegos gratis!";
      window.external.AddFavorite(url,titulo);
   }
   else {
      if(navigator.appName == "Netscape")
         alert ("Presione Crtl+D para agregar este sitio a favoritos");
   }
} 

function validar_ie(){
	if(navigator.appName != "Microsoft Internet Explorer"){
	alert("Esta opción solo funciona con Internet Explorer");
	}
}
