function showText(obj, text) {
	if(obj.value=='') {
		obj.value=text;
	}
}

function hideText(obj, text) {
	if(obj.value==text) {
		obj.value='';
	}
}

