function writeDiv(which, html) {

	if (document.layers) {
		document.layers[which].document.open()
		document.layers[which].document.write("<font color=white face=Arial size=-1>" + html + "</font>")
		document.layers[which].document.close()
	} else if (parseInt(navigator.appVersion) < 5) {
		var tmp = eval("document.all." + which)
		tmp.innerHTML = html
	} else {
		var ref = document.getElementById(which)
		ref.innerHTML = html
	}

}
