document.onmousedown = noRightClick;
/////////////////////////////////////////////////////////////////////////////////////////////////
function noRightClick() {
   clickMsg1 ="Sorry, right mouse click is disabled."
   clickMsg2 ="Source codes and images are propery of Lucky 4 Jays Paints and Quarters."
   clickMsg3 ="ALL RIGHTS RESERVED"
   if (event.button == 2) {
         alert(clickMsg1+'\n'+clickMsg2+'\n'+clickMsg3)
   }
}
/////////////////////////////////////////////////////////////////////////////////////////////////
function frameForce(logical) {
   if (logical == true){
      if (self.parent.frames.length == 0){
         self.parent.location = 'index.html'
      }
   }
   else if (logical == false){
      if (self.parent.frames.length != 0){				
         self.parent.location = 'index.html'
      }
   }
}
