// MENU CABECERA
function menu(opcion,llamador)
{
  var recibe = llamador.getElementsByTagName('ul')[0];
  if (opcion == 1) {recibe.style.display="block";} else {recibe.style.display="none";}
}

// CONSULTAS
function consulta(id)
{
  var ruta = "http://www.fullaventura.com/comunidad/consultas.php" + "?id=" + id;
  var ventana = window.open(ruta,"_blank","left=0,top=0,width=400,height=420,toolbar=no,location=no,status=no,menubar=no,resizable=no,scrollbars=no");
}

// ABRIR FICHAS
function fichas(id)
{
  var ruta = "http://www.estasenargentina.com/_comunidad/fichas.php?id=" + id;
  var ventana = window.open(ruta, "_blank","left=0,top=0,width=650,height=365,toolbar=no,location=no,status=no,menubar=no,resizable=no,scrollbars=no");
}

// ABRIR POPUP
function popup(ruta,ancho,alto)
{
  var ventana = window.open(ruta, "_blank","left=0,top=0,width="+ancho+",height="+alto+",toolbar=no,location=no,status=no,menubar=no,resizable=no,scrollbars=1");
}

// RECOMENDAR
function recomendar(link)
{
  var ruta = "http://www.fullaventura.com/comunidad/recomendar.php" + "?ruta=" + link;
  var ventana = window.open(ruta, "_blank", "left=0,top=0,width=450,height=420,toolbar=no,location=no,status=no,menubar=no,resizable=no,scrollbars=no");
}	

// ABRIR POPUP PUBLICIDAD INDEX
function popupindex(ruta,ancho,alto)
{
  var ventana = window.open(ruta, "_blank","left=0,top=0,width="+ancho+",height="+alto+",toolbar=no,location=no,status=no,menubar=no,resizable=no,scrollbars=no");
  ventana.blur();
  window.focus();
}

// AMPLIAR FOTOS
function foto(titulo,foto)
{
  var ruta = "/comunidad/foto.php" + "?title=" + titulo + "&photo=" + foto;
  var ventana = window.open(ruta,"_blank","left=0,top=0,width=50,height=50,toolbar=no,location=no,status=no,menubar=no,resizable=no,scrollbars=no"); 
}

// AMPLIAR FOTOS VIEJAS
function fotos(titulo,foto,alto,ancho)
{
  var ventana = window.open('',"_blank","left=0,top=0,width="+alto+", height="+ancho+",toolbar=no,location=no,status=no,menubar=no,resizable=no,scrollbars=0"); 
  ventana.document.write('<html><head><title>'+titulo+'</title></head><body>');
  ventana.document.write('<div style="position:absolute;width:'+ancho+'px;height:'+alto+'px;left:0px;top:0px"><img src='+foto+'></div></body></html>');
  ventana.document.close();
}

// AMPLIAR FOTOS RE VIEJAS
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function MM_callJS(jsStr) { //v2.0
  return eval(jsStr)
}

// MENU DESPLEGABLE
function MM_jumpMenu(targ,selObj,restore){
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

// CAMBIAR IMAGENES
function cambiar(nombre,path)
{
  window.document[nombre].src = path;
}