function copyright_warning()
		{
		window.clipboardData.clearData();
alert("All images on this site are copyrighted and watermarked. Your I.P. address has been recorded with GEOIP look-up data and is locked to this watermark. Any attempts to copy site content may result in an action against your ISP to close your account.");
}
 
		function my_onkeydown_handler()
		{
			switch (event.keyCode)
			{
				
				case 8 : // 'Backspace'
						//BRJ: Prevent IE's annoying habit of mapping Backspace to History.Back()
						if (!event.srcElement.isContentEditable)
						{
							event.keyCode = 0;
							event.returnValue = false;
						}
					break;
				case 53 : // '5'
					if (event.ctrlKey) // Ctrl-5
					{
						event.keyCode = 0;
						event.returnValue = false;  //BRJ: Cancel default browser action: select all
					}
					break;		
				case 66 : // 'B'
					if (event.ctrlKey) // Ctrl-B
					{
						event.keyCode = 0;
						event.returnValue = false;  //BRJ: Cancel default browser action: organize favorites
					}
					break;			
				case 69 : // 'E'
					if (event.ctrlKey) // Ctrl-E
					{
						event.keyCode = 0;
						event.returnValue = false;  //BRJ: Cancel default browser action: open search panel
					}
					break;			
				case 70 : // 'F'
					if (event.ctrlKey) // Ctrl-F
					{
						event.keyCode = 0;
						event.returnValue = false;  //BRJ: Cancel default browser action: open find dialog
					}
					break;
				case 72 : // 'H'
					if (event.ctrlKey) // Ctrl-H
					{
						event.keyCode = 0;
						event.returnValue = false;  //BRJ: Cancel default browser action: open history panel
					}
					break;
				case 73 : // 'I'
					if (event.ctrlKey) // Ctrl-I
					{
						event.keyCode = 0;
						event.returnValue = false;  //BRJ: Cancel default browser action: open favorites panel
					}
					break;
				case 76 : // 'L'
					if (event.ctrlKey) // Ctrl-L
					{
						event.keyCode = 0;
						event.returnValue = false;  //BRJ: Cancel default browser action: open window dialog
					}
					break;
				case 78 : // 'N'
					if (event.ctrlKey) // Ctrl-N
					{
						event.keyCode = 0;
						event.returnValue = false;  //BRJ: Cancel default browser action: open new browser window
					}
					break;		
				case 79 : // 'O'
					if (event.ctrlKey) // Ctrl-O
					{
						event.keyCode = 0;
						event.returnValue = false;  //BRJ: Cancel default browser action: open window dialog
					}
					break;		
				case 80 : // 'P'
					if (event.ctrlKey) // Ctrl-P
					{
						event.keyCode = 0;
						event.returnValue = false;  //BRJ: Cancel default browser action: open print dialog
					}
					break;
				case 82 : // 'R'
					if (event.ctrlKey)
					{
						event.keyCode = 0;
						event.returnValue = false;  //BRJ: Cancel default browser action: refresh browser window
					}
					break;				
				case 87 : // 'W'
					if (event.ctrlKey) // Ctrl-W
					{
						event.keyCode = 0;
						event.returnValue = false;  //BRJ: Cancel default browser action: close browser window
					}
					break;
				case 112 : // 'F1'
					//BRJ: see init_onhelp()
					break;	
				case 114 : // 'F3'
					event.keyCode = 0;
					event.returnValue = false;  //BRJ: Cancel default browser action: open search panel
					break;
				case 116 : // 'F5'
					if (event.ctrlKey || event.altKey || event.shiftKey) break;
					event.keyCode = 0;
					event.returnValue = false;  //BRJ: Cancel default browser action: refresh browser window
					break;
				case 117 : // 'F6'
					event.keyCode = 0;
					event.returnValue = false;  //BRJ: Cancel default browser action: highlight address bar
					break;			
				case 122 : // 'F11'
					event.keyCode = 0;
					event.returnValue = false;  //BRJ: Cancel default browser action: fullscreen mode
					break;
			}
		}

		document.attachEvent("onkeydown", my_onkeydown_handler);
	 
bV  = parseInt(navigator.appVersion)
bNS = navigator.appName=="Netscape"
bIE = navigator.appName=="Microsoft Internet Explorer"

function nrc(e) {
   if (bNS && e.which > 1){
     copyright_warning();
      return false
   } else if (bIE && (event.button >1)) {
       copyright_warning();
     return false;
   }
}

document.onmousedown = nrc;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (bNS && bV<5) window.onmousedown = nrc;

