//code used to get to the admin section
var dx = Array(1, -79, 82, -13, -4, 11, 0, 13);
var clicks = Array();
var clearit = null;

function showTruth(e) {
	var key = document.all ? window.event.keyCode : e.which;
	var bio = MM_findObj('bio');
	
	//shift clicks array
	if (clicks.length > dx.length) clicks.shift();
	clicks.push(key);
	//var ndx = "";
	
	if(clicks.length == dx.length+1) {
		var allRight = true;
		for (i=0, n=dx.length; i<n; i++) 
			//ndx += (clicks[i+1]-clicks[i]) + ',';
			if (clicks[i]+dx[i] != clicks[i+1]) 
				allRight = false;
		if(allRight) {
			bio.innerHTML = "Mr. Wiggins really doesn't like being called that. As such, the following few paragraphs will outline the extremely exhaustive career of the individual which we will address as just &quot;Joe.&quot;<br><br>After completing a bachelor's degree in computer engineering from the University of Utah, Joe ventured out into the &quot;real world.&quot; Having the worst timing on Earth helped him decide that his degree was really only for looks and he continued doing the job that had gotten him through college - web development. He was quickly recruited by a small start-up company to develop and maintain their web presence. Soon, he was pretty much doing any technical work the company needed, including setting up and supporting DSL customers, installing phone systems, setting up local networking and anything else the owners could possibly dream up in addition to web development.<br><br>Today, Joe has moved toward bigger and better things - yes, you guessed it - Cherish Bound. Each day he pushes technology further and further to find different ways to make our products better and easier to use. With constant improvements coming from available technologies, his goal is to create the simplest,  most rich user experience on the Internet today.";
		}
		//alert(ndx);
	}
}

if (navigator.appName == 'Netscape')
	document.captureEvents(Event.KEYPRESS);
if (navigator.appName == 'Microsoft Internet Explorer')
	document.onkeydown = showTruth;
if (navigator.appName != 'Microsoft Internet Explorer')
	document.onkeypress = showTruth;