function flash(soundName) {
document.write("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\" width=\"70\" height=\"20\" border=\"0\">")
document.write("  <param name=\"movie\" value=\"audio.swf\" />")
document.write("  <param name=\"quality\" value=\"high\" />")
document.write("  <param name=\"scale\" value=\"exactfit\" />")
document.write("  <param name=\"loop\" value=\"false\" />")
document.write("  <param name=\"bgcolor\" value=\"#ffffff\">")
if (soundName != ""){
document.write("  <param name=\"flashvars\" value=\"" + soundName + "\" />") 
}
document.write("<embed src=\"audio.swf\" flashvars=\"" + soundName + "\" quality=\"high\" pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" width=\"70\" height=\"20\" scale=\"exactfit\" swLiveConnect=\"true\" border=\"0\" loop=\"false\" bgcolor=\"#ffffff\"></embed></object>")
}