function swf(swfWidth, swfHeight, swfName, swfVars){
document.write('<OBJECT classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"');
document.write(' codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" ');
document.write(' ID=board WIDTH='+swfWidth+' HEIGHT='+swfHeight+'>');
document.write('<PARAM NAME="wmode" value="transparent">');
document.write('<PARAM NAME="movie" VALUE="'+ swfName +'"> ');
document.write('<PARAM NAME="FlashVars" VALUE="'+ swfVars +'"> ');
document.write('<EMBED src='+ swfName +' ');
document.write(' WIDTH='+ swfWidth +' HEIGHT='+ swfHeight +'');
document.write(' FlashVars='+ swfVars +' ');
document.write(' WMODE="transparent"');
document.write(' type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">');
document.write('</EMBED>');
document.write('</OBJECT>');
}