var time_diff = 28800000;	            // 8 hrs in msec to compensate for GMT
var month_name;		                  	// calendar month spelled out
var update;		                        // new modified date
var last_date;		                    // date file last modified per document
var last_month;
var last_year;
var last_day;

last_date = document.lastModified;

last_date = Date.parse(last_date);	   	//convert string to date
if (navigator.appName != "Netscape")
{	//determine browser
   last_date = last_date - time_diff
}

last_date = new Date(last_date);	    //recompute date per Date.parse(last_date)
last_month = last_date.getMonth();
last_year = last_date.getYear();
last_day = last_date.getDate();

if (last_month == 0){
   month_name = "January"}
if (last_month == 1){
   month_name = "February"}
if (last_month == 2){
   month_name = "March"}
if (last_month == 3){
   month_name = "April"}
if (last_month == 4){
   month_name = "May"}
if (last_month == 5){
   month_name = "June"}
if (last_month == 6){
   month_name = "July"}
if (last_month == 7){
   month_name = "August"}
if (last_month == 8){
   month_name = "September"}
if (last_month == 9){
   month_name = "October"}
if (last_month == 10){
   month_name = "November"}
if (last_month == 11){
   month_name = "December"}

if (last_year >= 2000){
   update = "Last Update: "+month_name+" "+last_day+", "+last_year}
else{
   update = "Last Update: "+month_name+" "+last_day+", 19"+last_year
}

document.write("<font size='1' color='white'> ");

document.write("<HR size='2'align='left'>");
<!-- Edit this section to add hyperlinks--> 

//
// Each link other then the first one (our home page) opens in a new browser window.
//
// Note: Usually _blank is not advisable for normal use since you can not control it.
//       There is no need for control so _blank works just fine.
//
document.write("<a HREF='index.html' title='Return to home page'>Home</a> | ");
document.write("<a HREF='http://www.ayoob.com/' title='LFI Massad Ayoob home page' target='_blank'>Lethal Force Institute</a> | ");
document.write("<a HREF='http://www.firearmsacademy.com/' title='FAS Marty Hayes home page' target='_blank'>Firearms Academy of Seattle</a> | ");
document.write("<a HREF='http://www.handgunlaw.us/' title='Concealed carry database home' target='_blank'>www.handgunlaw.us</a> | ");
//document.write("<a HREF='http://www.crimsontrace.com/' title='Laser Grips' target='_blank'>Crimson Trace</a>  ");

<!-- End of hyperlinks section--> 


document.write("<br>");
document.write("<HR>");
//document.write(update);
document.write("<br>Contact Jim &nbsp;&nbsp;&nbsp;| &nbsp;&nbsp;&nbsp;(503) 362-0584 telephone &nbsp;&nbsp;&nbsp;| &nbsp;&nbsp;&nbsp;(503) 364-4900 FAX &nbsp;&nbsp;&nbsp;| &nbsp;&nbsp;&nbsp;");


<!-- Edit this section with Email info--> 
document.write("<a HREF='mailto:jimjacobe@comcast.net' style='text-decoration: underline;' title='Send Jim Jacobe an email'>email</a><br>");
<!-- End of Email section--> 



//document.write("Copyright &#169; by Donald Jim Jacobe<br>");
//document.write("<A HREF='disclaimer.html'>Disclaimer</a><br>");
document.write("</font>");



