/* ActiveX */
function objectSwf(swf,width,height,flashvars,wmode) {
	document.write('<object type="application/x-shockwave-flash" width="' + width + '" height="' + height + '" data="' + swf + '">');
	document.write('<param name="movie" value="' + swf + '" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="menu" value="false" />');
	document.write('<param name="wmode" value="'+wmode+'" />');
	document.write('<param name="FlashVars" value="'+flashvars+'" />');
	document.write('<embed src="' + swf + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + width + '" height="' + height + '" wmode="'+wmode+'"></embed>');
	document.write('</object>');
}