//Built in Dreamweaver NN Resize fix that is inserted to resize the page
//to maintain the layer positions if a user is using Netscape 4.x and
//resizes the browser window
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

//Function to dispaly date modified on page
function write_datestamp() {
  var dayArray = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
  var monthArray = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
  var lastUpdate = new Date(document.lastModified);
  var thisDay=dayArray[lastUpdate.getDay()];
  var thisDate=lastUpdate.getDate() < 10 ? '0'+lastUpdate.getDate() : lastUpdate.getDate();
  var thisMonth=monthArray[lastUpdate.getMonth()];
  var thisMonthNum=lastUpdate.getMonth()+1 < 10 ? '0'+ (lastUpdate.getMonth()+1) : lastUpdate.getMonth()+1;
  var thisFullYear=String(lastUpdate.getFullYear());
  var thisYear= thisFullYear.charAt(2) + thisFullYear.charAt(3);
  return "Updated: " + thisMonthNum + "/" + thisDate + "/" + thisYear;
}