// JavaScript Document
window.onload=prepareImage;
function prepareImage() {
	if (!document.getElementById) return true;
	if (!document.getElementsByTagName) return true;
	if (!document.getElementById("infoimage")) return true;
	var imgdiv=document.getElementById("infoimage");
	var images=imgdiv.getElementsByTagName("img");
	for (var i=0; i<images.length; i++) {
		images[i].oncontextmenu=function () {
				return false;
		}
	}
}