
function RunFlash(urlString,swfWidth,swfHeight,swfColour,swfVer)
{
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version='+swfVer+',0,0,0" width="'+swfWidth+'" height="'+swfHeight+'" align="middle" name="flash_page" id="flash_page">');	
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="movie" value="'+urlString+'" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="bgcolor" value="'+swfColour+'" />');
	document.write('<param name="name" value="flash_page" />');
	document.write('<param name="id" value="flash_page" />');
	document.write('<PARAM name="wmode" value="transparent">');
	document.write('<embed src="' + urlString + '" quality="high" bgcolor="' + swfColour + '" width="' + swfWidth + '" height="' + swfHeight + '" wmode="transparent" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');
}


