// JavaScript Document
function redirUrl(){   
var currentUrl = window.location;  
if(currentUrl == "http://www.nova.edu/cps/"){
          window.location = "http://cps.nova.edu/";
}else if (currentUrl == "http://www.nova.edu/cps/index.html"){
          window.location = "http://cps.nova.edu/";
}
}
window.onload = function() {  redirUrl() }; 
