<!--
var win = null;
function popup(mipagina,elnombre,w,h,scroll){
posicionLEFT = (screen.width) ? (screen.width-w)/2 : 0;
posicionTOP = (screen.height) ? (screen.height-h)/2 : 0;
elcomo =
'height='+h+',width='+w+',top='+posicionTOP+',left='+posicionLEFT+',scrollbars='+scroll+',resizable=0'
win = window.open(mipagina,elnombre,elcomo)
}
//-->