function Switch(iName, newSrc) {
	if(document.images){
	    var img = document.getElementById(iName);
		img.src = newSrc;
	}
	return;
}
