function embedswf(SwfName,SwfWidth,SwfHeight){
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="someID" width="'+SwfWidth+'" height="'+SwfHeight+'">');
	document.write('<param name="movie" value="'+SwfName+'" />');
	document.write('<param name="allowScriptAccess" value="always" />');
	document.write('<param name="allowFullScreen" value="true" />');
	document.write('<param name="name" value="someValue" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="menu" value="false" />');
	document.write('<!--[if !IE]>-->');
	document.write('<object type="application/x-shockwave-flash" data="'+SwfName+'" width="'+SwfWidth+'" height="'+SwfHeight+'">');
	document.write('<!--<![endif]-->');
	document.write('<!--[if !IE]>-->');
	document.write('<param name="allowScriptAccess" value="always" />');
	document.write('<param name="allowFullScreen" value="true" />');
	document.write('<param name="name" value="someValue" />');
	document.write('<param name="menu" value="false" />');
	document.write('</object>');
	document.write('<!--<![endif]-->');
	document.write('</object>');
	}
