/* Error afhandeling */
function handleError() {
	return true;
}
window.onerror = handleError;

function doClear(theText) {
    if (theText.value == theText.defaultValue) {
        theText.value = ""
    }
}

