function swfLoad(movie,width,height)
{
	document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
	document.write('  codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" ');
	document.write(' ID=start width=' + width + ' height=' + height + '>\n');
	document.write(' <PARAM NAME=movie VALUE="' + movie + '"/>\n');
	document.write(' <PARAM NAME=quality VALUE=high/>\n');
	document.write(' <PARAM NAME=bgcolor VALUE=#000000/>\n');
	document.write(' <EMBED src="' + movie + '" quality=high bgcolor=#000000 swLiveConnect=FALSE \n');
	document.write(' width="' + width + '" height="' + height + '" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">\n');
	document.write(' </EMBED>\n');
	document.write(' </OBJECT>\n');
}