// JavaScript Document with Common Scriptsfunction changeBgColor(objID, newBgColor){var Element = document.getElementById(objID); Element.style["backgroundColor"]=newBgColor;}function goTo(sURL){window.location.href = sURL;}function newWindow(sURL){var newWindow = window.open(sURL)}