<!--
// ----- abreVentanas ------
var newwin;
function openWindow(theURL,name,features) {   //v.20

  newwin = window.open(theURL,name,features);
                      if(javascript_version > 1.0)
                      {  setTimeout('newwin.focus();',250);
                      }
ancho = screen.availWidth;
alto = screen.availHeight;
posicionX = (ancho - 630) / 2 -36;
posicionY = (alto - 500) / 2 - 24;
newwin.moveTo(posicionX,posicionY);
}
//-->
