<!--

//MCB addition July 2005

function showdef(obj, sw, e) {

 //get object, one way or another
 if ( document.getElementById ) {
  obj = document.getElementById( obj );
  }
 else if ( document.all ) {
  obj = document.all.item( obj );
  }
 else {
  obj = null; //failing case
  alert ("Sorry, can't do quicklinks in this browser");
  return;
  }

 

 obj.style.top  = '20px'; //set arg values in DIV
 obj.style.left = '10px';


 obj.style.display = sw ? 'block' : 'none'; //set status according to sw
 obj.style.visibility = sw ? 'visible' : 'hidden';

 }

//-->

