/* PopUp-Window ersetzt durch Javascript */
imgObject = null;

document.onmousemove = updateImgObject;

function updateImgObject(e) {
	x = (document.all) ? window.event.x : e.pageX;
	y = (document.all) ? window.event.y : e.pageY;
	if (imgObject != null) {
		imgObject.style.left = (x<=350) ? x +30 : 200; //horizontale Position verändern
		imgObject.style.top 	= (document.body.scrollTop + 160); //vertikale Position verändern
//		imgObject.style.height 	= 200; //Bildhoehe
//		imgObject.style.width 	= 200; //Bildbreite
	}
}
function showImgObject(id) {
	imgObject = document.getElementById(id);
	imgObject.style.display = "block"
}

function hideImgObject() {
	imgObject.style.display = "none";
}







