// JavaScript Document
//12/04/2004
//Josué Adib Cervantes García
// Desplegar Imagen en una ventana

//javascript:CargarNoticia('pagina.htm','630','350')

function CargarNoticia(img, ancho, alto){
  derecha=(screen.width-ancho)/2;
  arriba=(screen.height-alto)/2;
  string="toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width="+ancho+",height="+alto+",left="+derecha+",top="+arriba+"";
  fin=window.open(img,"",string);
}

