//Changes the links on the screen from orange to blue


function textChange(textId) {

document.getElementById(textId).style.color = "red";
document.getElementById(textId).style.textDecoration = "none";

}


function textNormal(textId) {

document.getElementById(textId).style.color = "blue";
document.getElementById(textId).style.textDecoration = "underline";

}



