/*
SWF Player Script By rabbi
For More Info: http://www.rabbi.co.il
*/

function swfPlayer(szFilePath, dwWidth, dwHeight) 
{
	var flashText = '';
	var szFlashname = 'flash' + Math.random();
	szFlashname = szFlashname.replace('.', '');
	
	flashText += "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0\" width=\"" + dwWidth + "\" height=\"" + dwHeight + "\" id=\"" + szFlashname + "\">";
	flashText += "<param name=\"movie\" value=\"" + szFilePath + "\"/>";
	flashText += "<param name=\"quality\" value=\"high\"/>";
	flashText += "<embed bgcolor=\"#cacaca\" src=\"" + szFilePath + "\" quality=\"high\" width=\"" + dwWidth + "\" height=\"" + dwHeight + "\" name=\"" + szFlashname + "\" align=\"\" type=\"application/x-shockwave-flash\" pluginspace=\"http://www.macromedia.com/go/getflashplayer\">";
	flashText += "</embed>";
	flashText += "</object>";
	
	document.write(flashText);
}
