//java functions for PSP section of my website 
//////////////////////////////////////////////
function MM_openBrWindow(theURL,winName,features)
{
//v2.0
window.open(theURL,winName,features);
}


var day_array = new Array("Sunday", "Monday", "Tuesday","Wednesday",
                          "Thursday", "Friday", "Saturday");
var month_array = new Array("January", "February", "March", "April",
                           "May", "June", "July", "August",
                           "September", "October", "November", "December");
     
mod_date  = new Date(document.lastModified);                      // create instance of Date() object
which_day  = mod_date.getDay();                                   // returns 0 thru 6
which_month = mod_date.getMonth();                                // returns 0 thru 11
which_date   = mod_date.getDate();                                // returns 1 thru 31
which_year  = mod_date.getYear();                                 // returns 2 digit year if less than 2000
 
var day_string = day_array[which_day];                            // point to specified day in array
var month_string = month_array[which_month];                      // point to specified month in array
 
if (which_year < 1000) which_year += 1900;                     // insure 4 digit year
       
function fShowLastModified()
{ 
document.write("<BR><FONT face=Verdana size=1>Last updated: " 
              + day_string + ", " + month_string + " " 
              + which_date + ", " + which_year + "</FONT><BR>");
}



