function submitform(form) {
	document.forms[form].submit();
}
function doClear(theText) {
	if (theText.value == theText.defaultValue) {
		theText.value = ""
	}
}