<!--

// Import any files needed to make the contact pop up work
// Script file path:
var scriptPath = "http://framework.communitycollege.org/js/"; //"http:\/\/framework.communitycollege.org\/js\/";
var strFile;
var scripts = new Array();
scripts = ["allPageScripts.js", "browserDetect.js", "scrollContent.js",
            "contacts_popup.js", "loadHREF.js", "validateForms.js"];

for(var x=0; x < scripts.length; x++)
{
   // Format filename
   strFile = scriptPath + scripts[x];
   document.write(
   '<script type="text/javascript" src="' + strFile + '"><\/script>');
}

// -->