/*===========*/
function Abrir_ventana (pagina, ancho, alto, posy, posx) {
var opciones="toolbar=no, location=no, directories=no, margin=0,status=no, menubar=no, scrollbars=no, resizable=yes, width="+ancho+", height="+alto+", top="+posy+", left="+posx+"";
newWindow=window.open(pagina,"",opciones);
newWindow.focus();
}
//ventanaexacta ala imagen
function DisplayImage(picURL,picWidth,picHeight,picTitle,ventana,posy,posx){
newWindow=window.open(picURL,ventana,'toolbar=no,width='+picWidth+',height='+picHeight+',top='+posy+',left='+posx);
newWindow.document.write('<html><head><title>'+picTitle+'<\/title><\/head><body background="'+picURL+'"><\/body><\/html>');
newWindow.resizeBy(picWidth-newWindow.document.body.clientWidth,picHeight-newWindow.document.body.clientHeight);
newWindow.focus();
}
