// Ver: 19.06.07
function ventana(URL){ 
window.open(URL,'ventana1','width=720, height=480, scrollbars=yes, menubar=no, location=no, resizable=no,toolbar=no,location=no,directories=no,top=200,left=200');
}
function ventanaSegDoc (URL){ 
window.open(URL,'ventana1','width=687, height=500, scrollbars=yes, menubar=no, location=no, resizable=no,toolbar=no,location=no,directories=no,top=100,left=100');
}

function ventanainf (URL){ 
window.open(URL,'ventana1','width=600, height=400, scrollbars=yes, menubar=no, location=no, resizable=no,toolbar=no,location=no,directories=no,top=200,left=200');
}

function ventanagal (URL){ 
window.open(URL,'ventana1','width=760, height=520, scrollbars=yes, menubar=no, location=no, resizable=no,toolbar=no,location=no,directories=no,top=50,left=50');
}

function ventanaclima (URL){ 
window.open(URL,'ventana1','width=780, height=540, scrollbars=yes, menubar=no, location=no, resizable=no,toolbar=no,location=no,directories=no,top=50,left=50');
}

function ventanaoport (URL){ 
window.open(URL,'ventana1','width=800, height=700, scrollbars=yes, menubar=no, location=no, resizable=no,toolbar=no,location=no,directories=no,top=50,left=50');
}

function winprintnoti (noturl){ 
window.open(noturl,'ventana1','width=700, height=600, scrollbars=yes, menubar=no, location=no, resizable=no,toolbar=no,location=no,directories=no,top=50,left=50');
}

function createNewPageX(documento,titulo,ancho,alto,izq,der){
    day = new Date();
    id = day.getTime();	
    var cabecera= " ";
    ventana=window.open ("",id,"scrollbars=no,status=no,resizable=no,toolbars=0,location=0,directories=0,menubar=0,width="+ ancho +",height="+ alto +",left = "+ izq +",top = "+ der +"");
    ventana.document.open();
    ventana.creator=window;
    cabecera+= "<html><head><title>" + titulo + "</title></head>";
    cabecera+= "<frameset rows=* border=0>";
    cabecera+= "<frame frameborder=0 src=" + documento +" name='newpage' scrolling=no>";
    cabecera+= "</frameset></body></html>";
    ventana.document.write(cabecera);
    ventana.document.close();
    ventana.creator=window;
  }
// Sin Link
  function createNewPage(documento,titulo,enlace,anchoDoc,altoDoc,anchoPag,altoPag,izq,der){
    day = new Date();
    id = day.getTime();	
    var cabecera= " ";
    ventana=window.open ("",id,"scrollbars=no,status=no,resizable=no,toolbars=0,location=0,directories=0,menubar=0,width="+ anchoPag +",height="+ altoPag +",left = "+ izq +",top = "+ der +"");
    ventana.document.open();
    ventana.creator=window;
    cabecera+= "<html><head><title>" + titulo + "</title></head>";
    cabecera+= "<body topmargin='0' leftmargin='0'><table><tr><td valign='top'>";
    cabecera+= "<img src=" + documento + " border=0 width="+ anchoDoc +" height=" + altoDoc +">";
    cabecera+= "</td></tr></table>";    
    cabecera+= "</body></html>";
    ventana.document.write(cabecera);
    ventana.document.close();
    ventana.creator=window;
  }
// Link Target=_blank  
function createNewPageLink(documento,titulo,enlace,anchoDoc,altoDoc,anchoPag,altoPag,izq,der){
    day = new Date();
    id = day.getTime();	
    var cabecera= " ";
    ventana=window.open ("",id,"scrollbars=no,status=no,resizable=no,toolbars=0,location=0,directories=0,menubar=0,width="+ anchoPag +",height="+ altoPag +",left = "+ izq +",top = "+ der +"");
    ventana.document.open();
    ventana.creator=window;
    cabecera+= "<html><head><title>" + titulo + "</title></head>";
    cabecera+= "<a href=" + enlace + " style='cursor:hand' target='_blank'>";
    cabecera+= "<img src=" + documento + " border=0 width="+ anchoDoc +" height=" + altoDoc +">";	
    cabecera+= "</a>";
    cabecera+= "</body></html>";
    ventana.document.write(cabecera);
    ventana.document.close();
    ventana.creator=window;
  }

// Link Target=_top
  function createNewPageLink2(documento,titulo,enlace,anchoDoc,altoDoc,anchoPag,altoPag,izq,der){
    day = new Date();
    id = day.getTime();	
    var cabecera= " ";
    ventana=window.open ("",id,"scrollbars=no,status=no,resizable=no,toolbars=0,location=0,directories=0,menubar=0,width="+ anchoPag +",height="+ altoPag +",left = "+ izq +",top = "+ der +"");
    ventana.document.open();
    ventana.creator=window;
    cabecera+= "<html><head><title>" + titulo + "</title></head>";
    cabecera+= "<body topmargin='0' leftmargin='0'><table><tr><td valign='top'>";
    cabecera+= "<a href=" + enlace + " style='cursor:hand' target='_blank'>";
    cabecera+= "<img src=" + documento + " border=0 width="+ anchoDoc +" height=" + altoDoc +">";
    cabecera+= "</a>";
    cabecera+= "</td></tr></table>";    
    cabecera+= "</body></html>";
    ventana.document.write(cabecera);
    ventana.document.close();
    ventana.creator=window;
  }
