// JavaScript Document

function showIt(show){
	if (typeof show.onselectstart!="undefined"){
		show.onselectstart=function(){ return false; }
	}
	else if (typeof show.style.MozUserSelect!="undefined"){
		show.style.MozUserSelect="none";
	}
	else {
		show.onmousedown=function(){ return false; }
	}
	show.style.cursor = "default"
}

function click (e) {
  if (!e)
    e = window.event;
  if ((e.type && e.type == "contextmenu") || (e.button && e.button == 2) || (e.which && e.which == 3)) {
    return false;
  }
}
if (document.layers)
  document.captureEvents(Event.MOUSEDOWN);
document.onmousedown = click;
document.oncontextmenu = click;
