function fieldLabel(fieldObj, InertText){
	if(!fieldObj.innerHTML){
		if(fieldObj.value == ""){
			fieldObj.style.color = "#999999";
			fieldObj.value = InertText;
		}else if(fieldObj.value == InertText){
			fieldObj.style.color = "#000000";
			fieldObj.value = "";
		}
	}else{
		if(fieldObj.innerHTML == ""){
			fieldObj.style.color = "#999999";
			fieldObj.innerHTML = InertText;
		}else if(fieldObj.innerHTML == InertText){
			fieldObj.style.color = "#000000";
			fieldObj.innerHTML = "";
		}
	}
}