//This file is to be included on Radio station pages.
var yradioparentwin = null
function SetyradioParentWindow(win) {
    yradioparentwin = win
}

function yradiocheckClose(win) {
  return win.closed;
}

function yradioclickHandler(url) {
    re = /com\/(.*)\?id/ ;
    var typeL = re.exec(url) ;
    if (typeL[1] == 'ap') {
	LaunchAffPlayer(url) ;
    }
    else {
	LaunchEmbPlayer(url) ;
    }
}

function LaunchAffPlayer(url) {
    window.open(url,'yradio','toolbar=no,width=476,height=356,left=0,top=30,status=no,scrollbars=yes,resize=no');
}

function LaunchEmbPlayer(url) {
    window.open(url,'yradio','toolbar=no,width=510,height=474,left=0,top=30,status=no,scrollbars=yes,resize=no');
}
