function setImage(where,what) {
	if(document.getElementById)
		document.getElementById(where).src=what;
	else if(navigator.appVersion.substring(0,1)!="2") // no images in Netscape 2, IE 3
		document[where].src=what;
}
