// JavaScript Document
function right(e) {
if (navigator.appName == 'Netscape' && e.which == 3) {
return false;
}

if (navigator.appName ==
'Microsoft Internet Explorer' && event.button==2) {
return false;
}
else return true;
}

function RightClick() {
if(document.images)
for(i=0;i<document.images.length;i++)
document.images[i].onmousedown = right;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
  }
  
  function MM_callJS(jsStr) { //v2.0
  return eval(jsStr)
}

