function writeFlash(params, _width, _height){
    var html = '<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+'" id="postal" align="middle">'+
               '<param name="allowScriptAccess" value="sameDomain" />'+
               '<param name="movie" value="'+params+'" />'+
               '<param name="quality" value="high" />'+
               '<param name="SWLiveConnection" value="true" />'+
			   '<param name="wmode" value="transparent">'+
               '<embed src="'+params+'" SWLiveConnection="true" quality="high"  width="'+_width+'" height="'+_height+'" name="postal" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="transparent"/>'+
               '</object>';
	document.write(html);
}

