<!--
document.write('<div id="d" style="padding:2 4 2 4; border: #0000ff 1px solid; z-index: 99; position: absolute; top: 0px;-moz-opacity:0.80;filter:alpha(opacity=80);opacity:0.80;background: #ffffff;">');
document.write('<span id="xcoord"></span><span id="ycoord"></span></div>');

var bH = false;
var bZ = false;
var showMode = false;

var headerHeight = 295;

if (document.all){
} else {
	document.captureEvents(Event.MOUSEMOVE);
}
document.onmousemove=followmouse;

function followmouse(e) {
	if (navigator.appName == 'Netscape') {
		return;
	}

	var lhs = (document.body.offsetWidth - 1000)/2;
	var xcurs = 0;
	var ycurs = 0;

	if (navigator.appName == 'Netscape'){
		xcurs = e.pageX;
		ycurs = e.pageY;
	} else {
		xcurs = event.clientX;
		ycurs = event.clientY;
	}

	document.getElementById('d').style.left=xcurs + 10;
	document.getElementById('d').style.width=250;
	if (navigator.appName == 'Netscape') {
		document.getElementById('d').style.top=ycurs + 10;
	} else {
		document.getElementById('d').style.top=ycurs + document.body.scrollTop - 40; //+ 15;
	}

	var l_xcurs = Math.ceil((xcurs - lhs)/10) + 1;
	var l_ycurs = Math.ceil((ycurs - headerHeight + document.body.scrollTop)/10);

	if ((l_ycurs < 0) || (l_ycurs > 65) || (l_xcurs < 0) || (l_xcurs > 100)){
		document.getElementById('d').style.display = "none";
	} else {
		document.getElementById('d').style.display = "";
		if (showMode) {
		document.getElementById('xcoord').innerHTML = "(" + l_xcurs + ",";
		document.getElementById('ycoord').innerHTML = l_ycurs + ")";
		} else {
		if (sTitle == "") {
		document.getElementById('xcoord').innerHTML = "These pixels are available! (" + l_xcurs + ",";
		document.getElementById('ycoord').innerHTML = l_ycurs + ")";// + xcurs + " : "+ycurs;
		} else {
			document.getElementById('xcoord').innerHTML = sTitle;// + " (" + l_xcurs + "," + l_ycurs + ")";
			document.getElementById('ycoord').innerHTML = "";
		}
		}
	}

	if (!bZ) {
		return;
	}
	var x,y,x1,x2,y1,y2,dx=0,dy=0;
	fact=2;
	opp=100;

	x=event.x;
	y=event.y;
	   
	dx=window.document.body.scrollLeft;
	dy=window.document.body.scrollTop;

	x1=-opp+(x+dx)*fact;	//left
	y1=-opp+(y+dy)*fact - (document.body.scrollTop*fact);	//top
	x2=+opp+(x+dx)*fact;	//right
	y2=+opp+(y+dy)*fact - (document.body.scrollTop*fact);	//bottom

	document.getElementById('een').style.left=(x+dx)*(1-fact);
	document.getElementById('een').style.top=(y+dy)*(1-fact) + document.body.scrollTop;
	document.getElementById('een').style.clip="rect(" +y1 +"px," +x2 +"px," +y2 +"px,"+x1 +"px)";

}

var sTitle="";
function d(o) {
	sTitle = o.title;
}
function e(o) {
	sTitle = "";	
}
-->