function popupFlashVideo(url, t, w, h) {
	Modalbox.show("popups/popup_video.html", {
		title: t, width: w + 100, height: h + 100, loadingString: 'Loading Video Player...', 
		params:"file=" + escape(url) + "&width=" + w + "&height=" + h
	});
}

function popupWMVideo(url, t, w, h) {
	Modalbox.show("popups/popup_wm_video.html", {
		title: t, width: w + 100, height: h + 100, loadingString: 'Loading Video Player...', 
		params:"file=" + escape(url) + "&width=" + w + "&height=" + h
	});
}

function popupYouTubeVideo(url, t, w, h) {
	Modalbox.show("popups/popup_yt_video.html", {
		title: t, width: w + 100, height: h + 100, loadingString: 'Loading Video Player...', 
		params:"file=" + escape(url) + "&width=" + w + "&height=" + h
	});
}

function popupMP3Audio(url, t) {
	Modalbox.show("popups/popup_audio.html", {
		title: t, width: 380, height: 75, loadingString: 'Loading Audio Player...', 
		params:"file=" + escape(url)
	});
}
