function RunOmicBrowse(param, width, height, contextPath){
 var text = "";
 var url  = "";
 url  = "\""+contextPath+"/swf/Background.swf"+param+"\"";
 text+='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"\n'
 text+='codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.'
 text+='cab#version=9,0,124,0"\n'
 text+='width="'  + width +  '"\n'
 text+='height="' + height + '"\n'
 text+='id="Background"\n';
 text+=' align="L">\n';
 text+="<param name=movie value="+url+">";
 text+='<param name=quality value=high>\n';
 text+='<param name=bgcolor value=#FFFFFF>\n';
 text+='<param name="wmode" value="opaque" />\n';
 text+='<embed src='+url+ '\n';
 text+='quality=high\n';
 text+='bgcolor=#FFFFFF\n';
 text+='width="'  + width +  '"\n';
 text+='height="' + height + '"\n';
 text+='name="Background"\n';
 text+='align="L"\n';
 text+='type="application/x-shockwave-flash"\n';
 text+='pluginspage="http://www.macromedia.com/go/getflashplayer">\n';
 text+='</embed>\n';
 text+='</object>';
 document.write(text);
}

function ResizeOmicBrowse(param){
  w = 0;
  h = 0;
  if(document.all){
    w = document.body.clientWidth;
    h = document.body.clientHeight;
  }else if(document.getElementById){
    w = window.innerWidth;
    h = window.innerHeight;
  }
  alert("PARAM:"+param+"w:"+w+"h:"+h);
}
function omicBrowseEvent(event,data) {
}
