function write_object(url, width, height, autoplay, loop, ret)
{
  if( autoplay != null )
    url += "&autoplay=" + autoplay;

  if( loop == null )
    url += "&loop=" + loop;

  var strObject = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="' + width + '" height="' + height + '">' +
                  '<param name="movie" value="' + url + '"></param>' +
                  '<param name="wmode" value="transparent"></param>' +
                  '<embed src="' + url + '" type="application/x-shockwave-flash" wmode="transparent" width="' + width + '" height="' + height + '"></embed>' +
                  '</object>';

  if (ret && ret == 1)
    return strObject;
  else
    document.write(strObject);
}

function write_flash(src, id, w, h, wmode) {
		var html = "<embed src="+src+" quality=high wmode="+wmode
			+" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash\" width="+w+" height="+h+"></embed>";
		document.write(html);
}
