

function mailit() {
    var v2="QPJYIE3PU2YPKZSFBVFIP3A3MCYIWXTU";
    var v7=unescape("2%259-%26%28V%22%26G%29%20%24%28%27%06%219%29%229V%24K%3D1%3C%3A%24v74");
    var v5=v2.length;var v1="";
    for(var v4=0;v4<v5;v4++){
        v1+=String.fromCharCode(v2.charCodeAt(v4)^v7.charCodeAt(v4));
    }
    window.location='mail\u0074o\u003a'+v1;
}

/* First thing is to declare global variables
   to contain the X and Y coordinates of the
   mouse cursor. */
var currentX = 0;
var currentY = 0;
	
/* Use "object sniffing" technique to determine
   if the browser has the captureEvent method.
   This tells us if the client is a Mozilla-type browser.
   If so, we tell the document object to 
   capture the MOUSEMOVE event. */
if (document.captureEvent){
  document.captureEvent(Event.MOUSEMOVE);
}

/* The getMousePosition() function will be the
   event-handling function that sets
   currentX and currentY. */
function getMousePosition(evt){

/* Internet Explorer and Mozilla have differences
   both in the way they implement events and the
   way they determine x/y coordinates. */
  if (window.event){
    
    /* This is the Internet Explorer way.
       Adds the x and y coordinates relative to the screen
       to the number of pixels the user has scrolled 
       horizontally and vertically. */
    currentX = window.event.clientX + document.documentElement.scrollLeft;
    
    currentY = window.event.clientY + document.documentElement.scrollTop;
  }
  else if (evt){
    
    /* In Mozilla/Netscape browsers, you just need to access
       the pageX and pageY properties to determine coordinates. */
    currentX = evt.pageX;
    currentY = evt.pageY;
  }
}

// register getMousePosition() as an event handler for the onmousemove event.
document.onmousemove = getMousePosition;

/* The positionElement function will place an object
   at the coordinates (currentX+10, currentY+10).
   Parameter: any valid ID attribute of an element. */
function positionElement(id){
  // set elem to the element with specified id.
  elem = document.getElementById(id);
  if (elem){
    /* If the element exists, set the CSS style "left"
       to currentX + 10, and the CSS style "top" to
       currentY + 10. */
    elem.style.left = (currentX+20) + "px";
    elem.style.top = (currentY) + "px";
  }
}

/* hideToolTip will set the CSS "visibility" property to
   "hidden" for an element whose ID attribute is passed
   to the function. */
function hideToolTip(id){
  elem = document.getElementById(id);
  if (elem){
    elem.style.display="none";
  }
}

/* showToolTip will set the CSS "visibility" property to
   "visible" for an element whose ID attribute is passed
   to the function. */
function showToolTip(id){
  elem = document.getElementById(id);
  if (elem){
    elem.style.display="block";
  }
}