function mouseQuote() {
	function get_random() {
    	var ranNum= Math.round(Math.random()*4);
    	return ranNum;
	}

	var whichQuote=get_random();
    var quote=new Array(5)
     quote[0]="There\'s more to life than mice... use <kbd>TAB</kbd> and <kbd>Shift+TAB</kbd> to get around instead.";
     quote[1]="Disable styles to see how your site looks. Use <strong>Tools &gt; Internet Options &gt; Accessibility</strong>";
     quote[2]="Resize the text! Use the text-size buttons on each of these pages or your browser\'s <strong>View</strong> Menu";   
     quote[3]="Does your site validate? Use the free W3C validators to find out (links at the bottom of each of these pages)";
     quote[4]="Banish the BACK button! Use <kbd>ALT+LEFT ARROW</kbd> instead.";
	var msg = (quote[whichQuote]);

	var IE = document.all?true:false
	// If NS -- that is, !IE -- then set up for mouse capture
	if (!IE) document.captureEvents(Event.MOUSEMOVE)
	// Temporary variables to hold mouse x-y pos.s
	var tempX = 0
	var tempY = 0
	// Main function to retrieve mouse x-y pos.s
	function getMouseXY(e) {
		if (document.getElementById('mdiv').style.display != 'none') {
		  if (IE) { // grab the x-y pos.s if browser is IE
		 	tempX = event.clientX + document.body.scrollLeft
			tempY = event.clientY + document.body.scrollTop
			} else {  // grab the x-y pos.s if browser is NS
		  	tempX = e.pageX
		  	tempY = e.pageY
			}  
			// catch possible negative values in NS4
			if (tempX < 0){tempX = 0}
			if (tempY < 0){tempY = 0}  
			// show the position values in the form named Show
			// in the text fields named MouseX and MouseY
			document.getElementById('mdiv').style.left = tempX + 10 + "px";
			document.getElementById('mdiv').style.top = tempY + 10 + "px";
			
//			document.Show.MouseX.value = tempX		check value
//			document.Show.MouseY.value = tempY		check value

			return true
		}
	}

	if (WM_readCookie('visited') != 'yes' && getActiveStyleSheet()!='xpda') {
		document.write('<div id="mdiv" style="position: absolute; top: 2em; left: -20em; z-index: 3; display:none" onclick="document.getElementById(\'mdiv\').style.display=\'none\';"><p style="margin: 2em 0 0 1.2em; border: solid #700 1px; background: #fff; width: 15em; padding: 0.4em; margin: 0; font-size: 0.9em; line-height: 120%">' + msg + '</p></div>');
		// Set-up to use getMouseXY function onMouseMove
		instantOpac(0,'mdiv');
		document.onmousemove = getMouseXY;
		document.onmouseclick = document.getElementById('mdiv').style.display='none';
		document.getElementById('mdiv').style.display='inline';
		opacity('mdiv', 0, 90, 1000);
		string="opacity('mdiv', 90, 0, 1000)";
		setTimeout(string,6000);
		string2="document.getElementById('mdiv').style.display='none';"
		setTimeout(string2,7000);
	}
}	

string3="WM_setCookie('visited','yes',0.01);";
setTimeout(string3,10000)

