<!--Move Preview Layer with mouse
if (document.layers) {
	document.captureEvents(Event.MOUSEMOVE);
	document.onmousemove = myScroll;
}

function myScroll(e) {
	if (document.layers) {
		document.layers['preview'].left = e.screenX - window.screenX - (window.outerWidth - window.innerWidth);
		document.layers['preview'].top = e.screenY - window.screenY - (window.outerHeight - window.innerHeight) + 25;
	}
	else if (document.all) {
		document.all('preview').style.posLeft = window.event.x -40;
		document.all('preview').style.posTop = window.event.y -35;
	}
}
//-->

