function openRadioWindow() 
{
var width = 740;
var height = 500;
var features = 
    "alwaysRaised=yes" +
           ",location=" +
           ",scrollbars=no" +
           ",status=no" +
           ",resizable=no" +
           ",width=" + width +
           ",height=" + height +
           ",left=" + (screen.width - width) / 2 +
           ",top=" + (screen.height - height) / 2;
   	    popup = window.open("http://www.live24.gr/radio/jukebox.jsp", "jukebox",features);
popup.focus();
width = null;
height = null;
features = null;
}


function openUStreameWindow() 
{
var width = 730;
var height = 400;
var features = 
    "alwaysRaised=yes" +
           ",location=" +
           ",scrollbars=no" +
           ",status=no" +
           ",resizable=no" +
           ",width=" + width +
           ",height=" + height +
           ",left=" + (screen.width - width) / 2 +
           ",top=" + (screen.height - height) / 2;
   	    popup = window.open("http://www.radiojukebox.gr/onair/live.html", "jukebox",features);
popup.focus();
width = null;
height = null;
features = null;
}

