function focusInput(theId,theContent) {
	if (theId.value == theContent) {
		theId.value = '';
	}
}
function blurInput(theId,theContent) {
	if (theId.value == '') {
		theId.value = theContent;
	}
}