function date_print (date2print){month_names = new Array(12);month_names[0] ="Jan"month_names[1] ="Feb"month_names[2] ="Mar"month_names[3] ="Apr"month_names[4] ="May"month_names[5] ="Jun"month_names[6] ="Jul"month_names[7] ="Aug"month_names[8] ="Sep"month_names[9] ="Oct"month_names[10] ="Nov"month_names[11] ="Dec"month = date2print.getMonth()day   = date2print.getDate()year  = date2print.getFullYear()document.write(""+day+"-"+month_names[month]+"-"+year)}// function Moddate()function Moddate (){mod_date = new Date( document.lastModified)date_print(mod_date)}//  function doc_infofunction doc_info(){document.write("This document was last modified ")Moddate()document.write("<BR>")document.write(document.URL)}