<!--
function toggle(obj) {
	var el = document.getElementById(obj);
	el.style.display = (el.style.display != 'none' ? 'none' : '' );

}
function show(obj){
	var el = document.getElementById(obj);
	el.style.display = 'block';
}
function hide(obj){
	var el = document.getElementById(obj);
	el.style.display = 'none';
}

function onFocusCheckEntry(which, cont) {
	if(which.value == cont) {
		which.value = "";
	}
}

function onBlurCheckEntry(which, cont) {
	if(which.value == "") {
		which.value = cont;
	}
}
-->
