<!--
defImg = "img_bin/img_link_default.jpg"
function boxOn(which,myImg) {
	if (document.all||document.getElementById) {
		if (document.getElementById) {
			document.getElementById("link_img").src = myImg
		}
		else {
			document.getElementById("link_img").src = myImg
	    }
	}
}
function boxOff(which) {
	if (document.all||document.getElementById) {
		if (document.getElementById) {
			document.getElementById("link_img").src = defImg
		}
		else {
			Message.innerHTML = offMessage;
      	}
	}
}
// -->