document.onmousedown=function(){ return false; }

if (document.body) {
	document.body.style.cursor = "default";
}

function showImage(thePath) {
	var popup;
	var theURL;
	thePath = "images/" + thePath;
	theURL = "show-image.php?path=" + thePath;
	popup = window.open(theURL, "popup", "width=500, height=500, resizable=no, directories=no, toolbar=no, location=no, menubar=no, directories=no, status=no, left=300, top=100");
}