
function LoadSwf(file, width, height, wmode, bgcolor) {
  document.write('<object type="\application/x-shockwave-flash\" data=\"'+file+'\" width=\"'+width+'\" height=\"'+height+'\">');
    document.write('<param name=\"movie\" value=\"'+file+'\" />');
    document.write('<param name=\"menu\" value=\"false\" />');
    document.write('<param name=\"quality\" value=\"high\" />');
    //document.write('<param name=\"scale\" value=\"noscale\" />');
    document.write('<param name=\"wmode\" value=\"'+wmode+'\" />');
    document.write('<param name=\"bgcolor\" value=\"'+bgcolor+'\" />');
    //document.write('<param name=\"flashvars\" value=\"str1='+str1+'&str2='+str2+'\" />');    
  document.write('<\/object>');
}

