function openFlashPopUp(w,h,href)
{
	var scroll="no";
	var left=(window.screen.width-w)>>1;
	var top=(window.screen.height-h)>>1;
	href+="&w="+w+"&h="+h;
	window.open(href,"_blank","left="+left+",top="+top+",width="+w+",height="+h+",toolbar=no,scrollbars="+scroll+",location=no,resizable=no,status=yes");
}

function openPopUp(href) 
{
    var w = 450;
    var h = 460;
    var scroll = "no";
    var left = (window.screen.width - w) >> 1;
    var top = (window.screen.height - h) >> 1;
    //href += "&w=" + w + "&h=" + h;
    window.open(href, "_blank", "left=" + left + ",top=" + top + ",width=" + w + ",height=" + h + ",toolbar=0,scrollbars=0,location=0,resizable=0,status=1");
}

function openRadioPlayer() 
{
    var w = 400;
    var h = 280;
    var left = (window.screen.width - w) >> 1;
    var top = (window.screen.height - h) >> 1;
    window.open("RadioPlayer.aspx", "_blank", "left=" + left + ",top=" + top + ",width=" + w + ",height=" + h + ",toolbar=0,scrollbars=0,location=0,resizable=0,status=1");
}