/* for the IE only workarounds */
var ie = (document.all) ? true : false;
/* to get rid of the pre-text in inputs */
/* needs two functions, if a ...... user enters the default Value... */
function onFocusCheckEntry(which, cont) {
// cause IE can't manage the :focus event on InputTypes 
	if(ie) which.style.backgroundColor = "#FFFFFF";
	if(which.value == cont) {
		which.value = "";
	}
}

function onBlurCheckEntry(which, cont) {
// cause IE can't manage the :focus event on InputTypes
	if(ie) which.style.backgroundColor = "#DFE1F0";
	if(which.value == '') {
		which.value = cont;
	}
}
