function colorRed(id) {
	if(document.getElementByID){
			document.getElementByID(id).style.color="red";
	}
	if(document.all){
			document.all(id).style.color="red";
		}
}
