// CABECERA
start=function() {
clase = document.body.className;
root = document.getElementById("menu");
for (i=0; i<root.childNodes.length; i++)
{
node = root.childNodes[i];
if (node.nodeName=="LI" && node.id != clase)
{
node.onmouseover=function() {this.className+=" over";}
node.onmouseout=function() {this.className=this.className.replace("over", "");}
node.onclick=function() {this.className=this.className.replace("over", "");}
}}}
window.onload=start;

// CONSULTAS
function consultas(id)
{
  var ruta = "http://www.estasenargentina.com/_comunidad/consultas.php" + "?id=" + id;
  var ventana = window.open(ruta, "_blank","left=0,top=0,width=360,height=300,toolbar=no,location=no,status=no,menubar=no,resizable=no,scrollbars=no");
}

// WEB
function web(id)
{
  var ruta = "../_comunidad/web.php" + "?id=" + id;
  var ventana = window.open(ruta, "_blank","left=0,top=0,width=640,height=480,toolbar=yes,location=yes,status=yes,menubar=yes,resizable=yes,scrollbars=yes");
}

// FICHAS
function ficha(id)
{
  var ruta = "http://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");
}

// FOTOS
function fotos(titulo,foto)
{
  var ruta = "../_comunidad/fotos.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"); 
}

// RECOMENDAR
function recomendar(direccion)
{
  var ruta = "../_comunidad/recomendar.php?ruta=" + direccion;
  var ventana = window.open(ruta, "_blank","left=0,top=0,width=360,height=300,toolbar=no,location=no,status=no,menubar=no,resizable=no,scrollbars=no");
}

// CONTACTO
function contacto()
{
  var ruta = "http://www.estasenargentina.com/_comunidad/contacto.php";
  var ventana = window.open(ruta, "_blank","left=0,top=0,width=360,height=360,toolbar=no,location=no,status=no,menubar=no,resizable=no,scrollbars=no");
}

// TERMINOS Y CONDICIONES
function tyc()
{
  var ruta = "http://www.estasenargentina.com/_comunidad/tyc.php";
  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=1");
}