// change the source file of an object
function changeSrc(objName,fileUrl) {
	var thisObj = objName;
	var thisUrl = fileUrl;
    objExists = document.getElementById(thisObj);
	if (objExists != null) {
		document.getElementById(thisObj).src = thisUrl;
	}
}
