// JavaScript Document

function showPlayer(movieURL, movieWidth, movieHeight) {
	
	var mURL = movieURL;
	var mWidth = movieWidth;
	var mHeight = movieHeight;
	
	document.write('<p><embed type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" name="" ');
	document.write('width="' +mWidth+ '" height="' +mHeight+ '" src="' +mURL+ '" ');
	document.write('bgcolor="#FAF3D7" quality="high" swliveconnect="true" allowscriptaccess="samedomain"></embed>');

}