//document.write('<![CDATA[
function mediaPlayer(mediaURL, ctxPath, mediaType, mediaTitle, mediaWidth, mediaHeight) {
	if('mp3' == mediaType) {
		document.write('<embed width="' + (mediaWidth || 400) + 'px" height="' + (mediaHeight || 27) + 'px" name="plugin" src="' + ctxPath + '/scripts/gPlayer.swf?audioUrl=' + mediaURL + '" type="application/x-shockwave-flash" style="border:1px solid #ccc;" />');
		return;
	} else {
		document.write('<embed src="' + mediaURL + '" style="border:1px solid #666;" type="application/x-oleobject" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" standby="Loading Windows Media Player components..." width="' + (mediaWidth || 430) + '" height="' + (mediaHeight || 380) + '" title="' + (mediaTitle || '') + '" autostart="false" loop="1" />');
	}
}
//]]>;
