function oWin(url,title,attrib) {wref=window.open(url,title,attrib);if(MSIE_VER()>=5)wref.focus()}

function fnExpandCollapse(a){
  var e=document.getElementById(a);
  var Img=document.getElementById('img'+a);
  if(!e)return true;
  if(e.style.display=="none"){
    e.style.display="block";
    Img.src="/images/collapse.jpg";
  } else {
    e.style.display="none";
    Img.src="/images/expand.jpg";
  }
  return true;
}
