<!------------------------------------------------------------------->
<!--                 Last Modified Date for a navigator            -->
<!------------------------------------------------------------------->
function navDate()
   {
   var newDate = new Date(document.lastModified)
   var newDay = newDate.getDate()
   var Month = newDate.getMonth()
   var MonthNames = new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
   var newMonth = MonthNames[Month]
   var newYear = newDate.getFullYear()
   document.write("<CENTER><DIV CLASS=modified>Last Updated<BR>" + newMonth + " " + newDay + ", " + newYear + "</DIV></CENTER>")
   }
   
<!------------------------------------------------------------------->
<!--                 Last Modified Date for a page                 -->
<!------------------------------------------------------------------->
function docDate()
   {
   var newDate = new Date(document.lastModified)
   var newDay = newDate.getDate()
   var Month = newDate.getMonth()
   var MonthNames = new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
   var newMonth = MonthNames[Month]
   var newYear = newDate.getFullYear()
   document.write("<CENTER><DIV CLASS=modified>Last Updated: " + newMonth + " " + newDay + ", " + newYear + "</DIV></CENTER>")
   }


<!------------------------------------------------------------------->
<!--                       Open Popup Window                       -->
<!------------------------------------------------------------------->
function open_popup_window( prmURL,prmwidth,prmheight) 
{
  prmName = 'WIN';
  settings =        'toolbar=0';
  settings += ',' + 'scrollbars=o';
  settings += ',' + 'location=0';
  settings += ',' + 'statusbar=0';
  settings += ',' + 'menubar=0';
  settings += ',' + 'resizable=0';
  settings += ',' + 'width='+ prmwidth;
  settings += ',' + 'height='+ prmheight;
  settings += ',' + 'left=' + ((screen.width - prmwidth) / 2);
  settings += ',' + 'top=' + ((screen.height - prmheight) / 2);

  window.open(prmURL, prmName, settings);
}


<!------------------------------------------------------------------->
<!--                Open Popup Window with scrollbars              -->
<!------------------------------------------------------------------->
function open_popup_window_scroll( prmURL,prmwidth,prmheight) 
{
  prmName = 'WIN';
  settings =        'toolbar=0';
  settings += ',' + 'scrollbars=1';
  settings += ',' + 'location=0';
  settings += ',' + 'statusbar=0';
  settings += ',' + 'menubar=0';
  settings += ',' + 'resizable=0';
  settings += ',' + 'width='+ prmwidth;
  settings += ',' + 'height='+ prmheight;
  settings += ',' + 'left=' + ((screen.width - prmwidth) / 2);
  settings += ',' + 'top=' + ((screen.height - prmheight) / 2);

  window.open(prmURL, prmName, settings);
}