<!--
function mouse_over(thisTD){ 
thisTD.style .borderLeft = "1px solid buttonhighlight" ; 
thisTD.style .borderRight = "1px solid buttonshadow"; 
thisTD.style .borderTop = "1px solid buttonhighlight"; 
thisTD.style .borderBottom = "1px solid buttonshadow"; 
} 
function mouse_out(thisTD){ 
thisTD.style .borderLeft = "0px" ; 
thisTD.style .borderRight = "0px"; 
thisTD.style .borderTop = "0px"; 
thisTD.style .borderBottom = "0px"; 
} 
if (window.Event) 
document.captureEvents(Event.MOUSEUP);  
function nocontextmenu() 
{
 event.cancelBubble = true
 event.returnValue = false; 
 return false;
} 
function norightclick(e) 
{
 if (window.Event) {
  if (e.which == 2 || e.which == 3)
   return false;
 }
 else
  if (event.button == 2 || event.button == 3)  {
   event.cancelBubble = true
   event.returnValue = false;
   return false;
  } 
} 
document.oncontextmenu = nocontextmenu;  // 
document.onmousedown = norightclick;  // 
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
} 
//-->



