// 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.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=" + width + " height=" + height + " id=" + fid + ">");
  document.write("<param name=wmode value=" + mode + " />");
  document.write("<param name=movie value=" + src + " />");
  document.write("<param name=quality value=high />");
  document.write("<param name=salign>");
  document.write("<param name=scale value=noscale>");
  document.write("<embed src=" + src + " quality=high wmode=" + mode + " type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash\" width=" + width + " height=" + height + "></embed>");
  document.write("</object>");

}


function viewFlash3(URL,mode,wid,hei,text) 
{
	document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='"+wid+"' height='"+hei+"' title='"+text+"'>");
	document.write("<param name='movie' value='"+URL+"'/>");
	document.write("<param name='quality' value='high'/>");
	document.write("<param name='WMODE' value='"+mode+"' />");
	document.write("<embed src='"+URL+"' quality='high' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' wmode='transparent' width='"+wid+"' height='"+hei+"'></embed>");
	document.write("</object>");
}
// write document contents
function print(src){
  //document.write(src);
}

