<!-- Hide	
//============================================================
//Script:    No-Right-Click Script Launches PopUp Window
//
//Functions: Blocks right-click on mouse and launches a popup
//           window.
//           
//Browsers:  NS4-7, IE4 & later
//
//Author:    etLux
//============================================================
//
//Put the following script in the head of your page:
//
// Script Source: CodeLifter.com
// Copyright 2003
// Do not remove this header.

// ----------- Setups ------------------
// Set the address, width, height, top
// and left dimensions for the popup
// window below.
// -------------------------------------

PopUpURL    = "http://www.bauengroup.com/protected.html";
PopUpLeft   =  100;
PopUpTop    =  100;
PopUpWidth  =  360;
PopUpHeight =  80;

// -------------------------------------
// Do not edit anything below this line.
// -------------------------------------

isIE=document.all;
isNN=!document.all&&document.getElementById;
isN4=document.layers;
popO='left='+PopUpLeft+',top='+PopUpTop+',width='+PopUpWidth+',height='+PopUpHeight

if (isIE||isNN){
document.oncontextmenu=checkV;
}else{
document.captureEvents(Event.MOUSEDOWN || Event.MOUSEUP);
document.onmousedown=checkV;}

function checkV(e){
if (isN4){
if (e.which==2||e.which==3){
dPUW=window.open(PopUpURL,'nrc',popO);
return false;
}}else{
dPUW=window.open(PopUpURL,'nrc',popO);
return false;}}

//Additional Notes:

//In the popup window that you open with this script, you may
//wish to add onload="self.focus()" to the body tag, as shown
//immediately below.  This forces the popup to come to the 
//front.

//<body onload='self.focus()'>



//===========================[end]============================
// show -->
