function loadSwf(url,width,height)
{
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://active.macromedia.com/flash4/cabs/swflash.cab#version=4,0,0,0" width="' + width + '" height="' + height + '">');
	document.writeln('<param name="movie" value="' + url + '">');
	document.writeln('<param name="play" value="true">');
	document.writeln('<param name="loop" value="true">');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<embed src="' + url + '" play="true" loop="true" quality="high" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" width="' + width + '" height="' + height + '"></embed>');
	document.writeln('</object>');
}
