function popupPlayer(media,id,t) {
	var width, height;
	if(media=='v'){
		width=400;
		height=340;
	}
	else{
		width=300;
		height=240;
		if(t=='p' || t=='a') height+=70;
	}
	window.open("radio/player.asp?media="+media+"&id="+id+"&t="+t,media+"player","scrollbars=no,width=" + width + ",height=" + height + ",status=no,screenX=200,screenY=50,left=200,top=50,resizable=no");
}