<!-- BLOCKS ALL JAVASCRIPT ERRORS

function blockError(){return true;}
window.onerror = blockError;

var message = "You may not right mouse click this page.";

//function noRightClick() {
//  if (event.button==2) {
//    alert('You may not right mouse click this page.')
//  }
//}
//document.onmousedown=noRightClick

function clickIE4() {
  if (event.button == 2) {
    return false;
  }
}

function clickNS4(e) {
  if (document.layers || document.getElementById && ! document.all) {
    if (e.which == 2 || e.which == 3) {
      return false;
    }
  }
}

if (document.layers) {
  document.captureEvents(Event.MOUSEDOWN);
  document.onmousedown = clickNS4;
} else if (document.all && !document.getElementById) {
  document.onmousedown = clickIE4;
}

document.oncontextmenu = new Function("return false")


var w_width 			= 600
var w_height 			= 700

var wscrollbarS			= "1"


function newwindow(address)
{
    var look = "width=800, height=600, toolbar=yes, location=yes, directories=yes, status=yes, menubar=yes, scrollbars=yes, copyhistory=yes, resizable=yes";
    window.open(address,'jav',look);
}

function terms(URL) {
    day = new Date();
    id = day.getTime();
    eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=' + wscrollbarS + ', location=0, statusbar=0, menubar=0, resizable=1, width=' + w_width + ', height=' + w_height + '');");
}


// -->
