function setDisplay(id,displ)	{
	if (document.getElementById){
		var el = document.getElementById(id);
		el.style.display = (!displ) ? 'block' : 'none';
	}
}

var ie = (document.all) ? true : false;

function onFocusCheckEntry(which, cont) {
	if(ie) which.style.backgroundColor = "#FFFFFF";
	if(which.value == cont) {
		which.value = "";
	}
}

function onBlurCheckEntry(which, cont) {
	if(ie) which.style.backgroundColor = "#DFE1F0";
	if(which.value == '') {
		which.value = cont;
	}
				}
