function putSwf(width,height,path){
	if(!Browser){
		Browser="else";
	}
	var tag = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+width+'" height="'+height+'"  id="index">\n';
	tag +='<param name="movie" value="'+path+'" />\n';
	tag +='<param name="quality" value="high" />\n';
	tag +='<param name="wmode" value="transparent" />\n';
	tag +='<param name="allowScriptAccess" value="always" />\n';
	tag +='<param name="FlashVars" value="browser='+Browser+'" />\n';
	tag +='<embed src="'+path+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'" wmode="transparent" allowScriptAccess="always" FlashVars="browser='+Browser+'" id="index">\n';
	tag +='</embed>\n';
	tag +='</object>\n';
	document.write(tag);
	window.document.index.SetVariable("titleValue","title_test");
}