// AMPLIAR FOTOS
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();
}

// 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");
}

// FOTOS AMPLIADAS VIEJAS
function MM_openBrWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}

// CAMBIAR IMAGENES
function cambiar(nombre,path)
{
  window.document[nombre].src = path;
}

function MM_callJS(jsStr) {
  return eval(jsStr)
}
