﻿function RenderFlash(width, height, path, basePath)
{
	document.write('<object id=VideoPlayer codebase=http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0 height="' + height + '" width="' + width + '" align=middle classid=clsid:d27cdb6e-ae6d-11cf-96b8-444553540000 viewastext>');
	document.write('<param name="Movie" value="' + path + '">');
	document.write('<param name="Src" value="' + path + '">');
	
	//if (isRelativeToSWF) {
	  document.write('<param name="Base" value="' + basePath + '">');
	//}
	
	document.write('<param name="Quality" value="High">');
	document.write('<param name="BgColor" value="#cccc33">');
	document.write('<param name="wMode" value="transparent">');
	document.write('<param name="AllowScriptAccess" value="sameDomain">');
	document.write('<embed src="' + path + '" ');
	
  //if (isRelativeToSWF) {
	  document.write('base="' + basePath + '" ');
	//}
	
	document.write('quality="high" bgcolor="#cccc33" wMode="transparent" width="' + width + '" height="' + height + '" name="VideoPlayer" align="middle" allowscriptaccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');
};
