<!--
function mp3player(url) {
var miPopup
w = 300;
h = 230;
x4 = screen.width/2 - (w/2);
y4 = screen.height/2 - (h/2) - 20;
miPopup = window.open(url, 'ventana', 'height='+h+',width='+w+',scrollbars=0,resizable=0,menubar=0,toolbar=0,status=0,location=0,directories=0,left=' + x4 + ',top=' + y4 + '');
miPopup.focus()
}


function ventana(url, ventana) {
w = 300;
h = 300;
x4 = screen.width/2 - (w/2);
y4 = screen.height/2 - (h/2) - 20;
window.open(url, ventana, 'height='+h+',width='+w+',scrollbars=0,resizable=0,menubar=0,toolbar=0,status=1,location=0,directories=0,left=' + x4 + ',top=' + y4 + '');
}


function tv(url, ventana) {
w = 240;
h = 230;
x4 = screen.width/2 - (w/2);
y4 = screen.height/2 - (h/2) - 20;
window.open(url, ventana, 'height='+h+',width='+w+',scrollbars=0,resizable=0,menubar=0,toolbar=0,status=1,location=0,directories=0,left=' + x4 + ',top=' + y4 + '');
}


function audio(url, ventana) {
w = 240;
h = 230;
x4 = screen.width/2 - (w/2);
y4 = screen.height/2 - (h/2) - 20;
window.open(url, ventana, 'height='+h+',width='+w+',scrollbars=0,resizable=0,menubar=0,toolbar=0,status=1,location=0,directories=0,left=' + x4 + ',top=' + y4 + '');
}


function films(url, ventana) {
w = 409;
h = 230;
x4 = screen.width/2 - (w/2);
y4 = screen.height/2 - (h/2) - 20;
window.open(url, ventana, 'height='+h+',width='+w+',scrollbars=0,resizable=0,menubar=0,toolbar=0,status=1,location=0,directories=0,left=' + x4 + ',top=' + y4 + '');
}


function cerrar()
{
window.close(self)
}

//-->
