function focusInput(theId,theContent) {
	if (theId.value == theContent) {
		theId.value = '';
		theId.style.color = '#000000';
	}
}
function blurInput(theId,theContent) {
	if (theId.value == '') {
		theId.value = theContent;
		theId.style.color = '#999';
	}
}
