// JavaScript Document

<!-- START_JS to Mouse & Keyboard = Felipe Giglio-->

function click() {
if (event.button==2||event.button==3) {
 oncontextmenu='return false';
  }
}
document.onmousedown=click
document.oncontextmenu = new Function("return false;")

<!-- END_JS to Mouse & Keyboard = Felipe Giglio-->


<!-- START_JS to Reload Page = Felipe Giglio-->
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
<!-- END_JS to Reload Page = Felipe Giglio-->

<!-- // Start_Layer Control Browser
var isNav, isIE, isNav7;
var coll="";
var styleObj="";
if (parseInt(navigator.appVersion) >= 4) {
    if (navigator.appName == "Netscape") {
       isNav = true;
       if (parseInt(navigator.appVersion) >= 5)
       {
          isNav7 = true;
       }
    } else {
       isIE = true;
       coll = "all.";
       styleObj = ".style";
    }
}

function defineObj(objName) {
   var obj;
   if (isNav) { 
      obj = "document." + objName;
      if (isNav7) {
         obj = "document.getElementById('" + objName + "').style";
      }
   } else {
      if (isIE) {
         obj = "document.all." + objName + ".style";
      }
   }
   return eval(obj);
}

function view(obj){
	obj.visibility="hidden";
}

function show(obj) { 
    obj.visibility = "visible";
}

function hide(obj) {
    obj.visibility = "hidden";
}
// End_Layer Control Browser //-->

<!-- START_JS to Hide link status bar = Felipe Giglio-->
//Hide status bar msg II script- by javascriptkit.com
//Visit JavaScript Kit (http://javascriptkit.com) for script
//Credit must stay intact for use

function hidestatus(){
window.status=''
return true
}

if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

document.onmouseover=hidestatus
document.onmouseout=hidestatus
<!-- END_JS to Hide link status bar = Felipe Giglio-->

<!-- START_JS to Status bar Message = Felipe Giglio-->
/* MjM'S JAVA CODENAME = FLASH
   This JavaScript Code was written by MjM for Hyperchat UK
   I am not responsible for any damage caused by my code.
   This code can be modified as long as the Author's Name is still attached.
   Email : MjM@hyperchat.co.uk
   © Copyright 1996
*/
var yourwords = ": : :. v e r s a t t y . c o n s u l t i n g . : : :";
var speed = 0;
var control = 0;
function flash()
{
  if (control == 0)
    {
      window.status=yourwords;
      control=0;
    }  
  else
    {
      window.status="";
      control=1;
    }
  setTimeout("flash();",speed);
}
// -->
<!-- START_JS to Status bar Message = Felipe Giglio-->