// src   : source url
// fid   : flash id
// width : source width
// height: source height
// mode  : wmode ("" for none, transparent, opaque ...)
function flash(src,fid,width,height,mode){
	document.writeln("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000'");
    document.writeln("codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0'");
    document.writeln("width=" + width + " height=" + height + " id=" + fid + ">");
    document.writeln("<param name=wmode value=" + mode + " />");
    document.writeln("<param name=movie value=" + src + " />");
    document.writeln("<param name=quality value=high />");
    document.writeln("<embed src='" + src + "' quality='high' wmode='" + mode + "' ");
    document.writeln("type='application/x-shockwave-flash' ");
    document.writeln("pluginspage='http://www.macromedia.com/shockwave/download/index.cgi");
    document.writeln("?p1_prod_version=shockwaveflash' width=" + width + " height=" + height + ">");
    document.writeln("</embed>");
    document.writeln("</object>");
}

// write document contents
function print(src){
  //document.write(src);
}