function changeTextColor(whichID){
	if(document.getElementById()){
		document.getElementById(whichID).style.color = "#000000";
	}	
}

function changeBorderColor(whichID, theColor){
	if(document.getElementById()){
		document.getElementById(whichID).style.borderColor = theColor;
	}	
}
