function writeflash(flashID,swfUrl,width,height,FlashVars){
    document.open();
    if (getFlashVer() < 8) {
	    document.write('<a href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" target="_blank">');
	    document.write('Flash Player DL hear');
	    document.write('</a>');
    }else{
	    document.write('<object style="width:'+width+'px;height:'+ height +'px;" id="'+flashID+'" type="application/x-shockwave-flash" align="middle" id='+ flashID +' >');
	    document.write('<param name="movie" value="' + swfUrl + '" />');
	    document.write('<param name="wmode"value="window" />');
	    document.write('<param name="quality" value="high" />');
	    document.write('<param name="allowFullScreen" value="true" />');
	    document.write('<param name="flashVars" value="'+ FlashVars +'" />');
	    document.write('</object>');
    }
    document.close();
}
