// Image replacer v3.1 (quasimodo)

// Initialisation
function defObj(URL) {
	rslt = new Image();		
	rslt.src = imgDir + URL;
	return rslt;
}

//	Main Functions
function repImg(imgDocID,newDocID) {
	obj = document.getElementById(imgDocID);
	if (newDocID) { obj.src = eval(newDocID + ".src"); } else { obj.src = eval(imgDocID + ".src"); }
}
