<!-- This function opens the Flash Player at PodBlaze and plays the selected file -->

function MM_openBrWindow(url, name, args) {
if (typeof(popupWin) != "object"){
popupWin = window.open(url,name,args);
 popupWin.moveTo(100,130); 
} else {
if (!popupWin.closed){
popupWin.location.href = url;
} else {
popupWin = window.open(url,name,args);
	popupWin.moveTo(100,130);
}
}
popupWin.focus();
}
