

<!--
function clickIE()
{
   if (document.all) {return false}
}
function clickNS(n)
{
   if (document.layers||
   (document.getElementById&&!document.all))
   {if (n.which==2||n.which==3) {return false}}
}
if (document.layers)
{
   document.captureEvents(Event.MOUSEDOWN);
   document.onmousedown = clickNS
}
else
{
   document.onmouseup = clickNS;
   document.oncontextmenu = clickIE
}
document.oncontextmenu = new Function("return false")
// -->


<!--
function disableselect()
{return false}
if (window.sidebar)
// Works in NS6
document.onmousedown = disableselect
else
// Works in IE4+
document.onselectstart = new Function("return false")
// -->



