function setValueIf(obj, contentIf, contentThen) {
	
	if (obj && ( obj.value == contentIf) ) obj.value = contentThen;
	
}
