<!--
function winImage(imageName,imageHeight,imageWidth,pageName) {
winPopup = window.open("",pageName,"width="+(imageWidth+20)+",height="+(imageHeight+30));
winPopup.location.href = imageName;
}

var agt=navigator.userAgent.toLowerCase();
var opera7_up = (agt.indexOf("opera") >= 0);

function showOffset(object,x,y) {
if ( opera7_up ) {
	x = 0;
	y = 0;
}
	if (document.all) {
		theObject = eval("document.all['" + object + "']"); 
		theObject.style.visibility = 'visible';		
		theObject.style.posLeft = theObject.offsetLeft + x;
		theObject.style.posTop = theObject.offsetTop + y; 
	}
	else if (document.getElementById) {
		theObject = eval("document.getElementById('" + object + "')"); 
		theObject.style.visibility = 'visible';
		theObject.style.left = window.event.x + x + 30;
		theObject.style.top = window.event.y + y;
	}	 
}

function hideOffset(object,x,y) {
if ( opera7_up ) {
	x = 0;
	y = 0;
}	
	if (document.all) {
		theObject = eval("document.all['" + object + "']"); 
		theObject.style.visibility = 'hidden';
		theObject.style.posLeft -= x;
		theObject.style.posTop -= y;		
	}
	else if (document.getElementById) {
		theObject = eval("document.getElementById('" + object + "')"); 
		theObject.style.visibility = 'hidden';
		theObject.style.left -= window.event.x + x + 30;
		theObject.style.top -= window.event.y + y;
	}
}

if (document.getElementById) {
	
	function WM_getCursorHandler(e) {
		// set event properties to global vars (add or subtract as desired)
		window.event.clientX = e.pageX;
		window.event.clientY = e.pageY;
		window.event.x = e.layerX;
		window.event.y = e.layerY;
		window.event.screenX = e.screenX;
		window.event.screenY = e.screenY;
		// route the event back to the intended function
		if ( routeEvent(e) == false ) {
			return false;
		} 
		else {
			return true;
		}
	}
	if(!window.event && window.captureEvents) {
		window.captureEvents(Event.MOUSEOVER|Event.MOUSEOUT);
		window.onmouseover = WM_getCursorHandler;
		window.onmouseout = WM_getCursorHandler;
		// create an object to store the event properties 
		window.event = new Object;
	}	
}			
// -->
