function ZactivateSWF(url, h, w, col, id) {

  document.write(url + " " + id);

  document.write('test"0"');

}




function activateSWF(url, h, w, col, id) {


  document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" ');
  document.write('codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" ');
  document.write('width="' + w + '" ');
  document.write('height="' + h + '" ');
  document.write('id="' + id + '" align="middle">\n');
  document.write('<param name="allowScriptAccess" value="sameDomain" />');
  document.write('<param name="movie" value="' + url + '" />');
  document.write('<param name="quality" value="high" />');
  document.write('<param name="bgcolor" value="' + col + '" />');

  document.write('<embed src="' + url + '" quality="high" bgcolor="' + col + '" width="' + w + '" height="' + h + '" name="' + id + '" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
  document.write("</object>");
}




