function swapImage(targetID, strSrc) {	if (typeof targetID == "string") var objImg = returnObjById(targetID);	else if (typeof targetID == "object") var objImg = targetID;	objImg.setAttribute("src",strSrc);}