// translate phrases by gaining access to PHP translate // strings via divs function localize(string) { return document.getElementById(string).innerHTML; } //highlight the tab titles when any information inside them //is changed function highlight(field) { var cl = ((field == "chris") ? "chr" : field.substr(0,4)); document.getElementsByClassName("stTitle "+cl)[0].style.color = "red"; } function clearHighlight() { // clear highlights in tabs for (i=4; i