<!--
       
        if (document.images) {
            home_on = new Image(); 
            home_on.src ="images/arrow_on.gif";
            applying_on = new Image(); 
            applying_on.src ="images/arrow_on.gif";
            uwprocess_on = new Image(); 
            uwprocess_on.src ="images/arrow_on.gif";
            shopping_on = new Image(); 
            shopping_on.src ="images/arrow_on.gif";
		
            home_off = new Image(); 
            home_off.src ="images/arrow_off.gif";
            applying_off = new Image(); 
            applying_off.src ="images/arrow_off.gif";
            uwprocess_off = new Image(); 
            uwprocess_off.src ="images/arrow_off.gif";
            shopping_off = new Image(); 
            shopping_off.src ="images/arrow_off.gif";		
        }

// Function to 'activate' images.
function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "_on.src");

        }
}

// Function to 'deactivate' images.
function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "_off.src");

        }
}

// -->

<!--

function description_window(url) {
        if(navigator.userAgent.indexOf("MSIE") == -1) {
      newwindow = window.open(url,'description','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=450,height=410');
      newwindow.focus();
    } else {
      window.open(url,'description','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=450,height=410');
    }
}
//-->

<!--
dayName = new Array ("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday")
monName = new Array ("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December")
now = new Date
// -->