// JavaScript Document

function swf(movie,width,height)
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="');

	document.write(width);
	
	document.write('" height="');

	document.write(height);
	
	document.write('">\n');
	
	document.write('<param name="allowScriptAccess" value="sameDomain" /><param name="wmode" value="transparent" />\n')
				   
	document.write('<param name="movie" value="');

	document.write(movie);
	
	document.write('">\n <param name="quality" value="high">\n <param name="menu" value="false">\n <embed src="');

	document.write(movie);
	
	document.write('" quality="high" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" width="');

	document.write(width);
	
	document.write('" height="');

	document.write(height);

	document.write('" menu="false"></embed>\n </object>');
}
