function swf(file,width,height,vars) {
	var content = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="'+width+'" height="'+height+'" align="middle" type="application/x-shockwave-flash">';
	if (vars) {
		content += '<param name="FlashVars" value="'+vars+'">';
	}
	content += '<param name="movie" value="'+file+'" />';
	content += '<param name="quality" value="high" />';
	content += '<param name="wmode" value="Transparent" />';
	content += '<embed src="'+file+'" flashvars="'+vars+'" quality="high" width="'+width+'" height="'+height+'" name="flashobj" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" wmode="Transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
	content += '</object>';
	document.write(content);
}

function wr(str) {
	document.write(str);
}
