<!--
function abrirventana () {
var windowX = ((screen.width)/2)-(ancho/2)// izquierda     ancho viene desde el link
var windowY = ((screen.height)/2)-(alto/2) // arriba        alto viene desde el link
opciones="toolbar=0, menubar=1, scrollbars=0, resizable=1, width="+(ancho+30)+", height="+alto;
Miventana = window.open ( url , "becool", opciones )
Miventana.window.focus() 
Miventana.moveTo (windowX,windowY)
Miventana.window.resizeTo (ancho+30,alto+30)
}
//-->
<!--
function abrirRepro () {
var windowX = ((screen.width)/2)-(ancho/2)// izquierda     ancho viene desde el link
var windowY = ((screen.height)/2)-(alto/2) // arriba        alto viene desde el link
opciones="toolbar=0, menubar=0, scrollbars=0, resizable=1, width="+(ancho+30)+", height="+alto;
Miventana = window.open ( url , "reproductor", opciones )
Miventana.window.focus() 
Miventana.moveTo (windowX,windowY)
Miventana.window.resizeTo (ancho+30,alto+30)
}
//-->