//MODIFICADO POR DEIVI LEON
function ventana(pagina,w,h) {
myleft=(screen.width)?(screen.width-w)/2:100;mytop=(screen.height)?(screen.height-h)/2:100;
var opciones="top="+ mytop +",left="+ myleft +",width="+ w +",height="+ h +", personalbar=no,location=no,directories=no,menubar=no,toolbar=no,status=no,scrollbars=no,resizable=no,fullscreen=no";
window.open(pagina,"",opciones);
}

//MODIFICADO POR DEIVI LEON
function ventanas(pagina,w,h) {
myleft=(screen.width)?(screen.width-w)/2:100;mytop=(screen.height)?(screen.height-h)/2:100;
var opciones="top="+ mytop +",left="+ myleft +",width="+ w +",height="+ h +", location=no,directories=no,menubar=no,toolbar=no,status=no,scrollbars=yes,resizable=yes,fullscreen=no";
window.open(pagina,"",opciones);
}

//SI DESEA QUE LA VENTANA SE ABRA SOBRE LA MISMA, USE ESTO
//PARA LA BUENAVENTURA.COM NO SE DEBE USAR POR SU RADIO EN LINEA
/*Abrir_ventanaWin=window.open(pagina,"RADIO_LBA",opciones);
Abrir_ventanaWin.focus(); //FOCUS ACTUALIZA LA VENTANA ABIERTA*/
