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