function top_div()
{
browser_name = which_browser(); 

switch(browser_name)
{
case "Firefox":
  document.write("<div id='main_menu' align='center' style='margin-top: 0px; margin-left: -16px; padding-bottom: .25in;'>");
  break;    
case "Safari":
  document.write("<div id='main_menu' align='center' style='margin-top: 0px; margin-left: -16px; padding-bottom: .25in;'>");
  break;
case "Chrome":
  document.write("<div id='main_menu' align='center' style='margin-top: 0px; margin-left: -17px; padding-bottom: .25in;'>");
  break;
default:
  document.write("<div id='main_menu' align='center' style='margin-top: 0px; margin-left: 0px; padding-bottom: .25in;'>");
}
}


function top_row()
{
browser_name = which_browser(); 

switch(browser_name)
{
case "Firefox":
  document.write("<tr><td class='top' style='padding-bottom: 33px;'>");
  break;    
case "Safari":
  document.write("<tr><td class='top' style='padding-bottom: 33px;'>");
  break;
case "Chrome":
  document.write("<tr><td class='top' style='padding-bottom: 34px;'>");
  break;
default:
  document.write("<tr><td class='top' style='padding-bottom: 13px;'>");
}
/* document.write("<img src='/images/masthead_966px_127px.jpg' border='0' alt='[Anthony J. Alexakis]'"); */ 
document.write("&nbsp;</td></tr>");
}


function firefox_br()
{
browser_name = which_browser(); 

switch(browser_name)
{
case "Firefox":
  document.write("<br>");
  break;    
}
}

function footer()
{
  document.write("<tr><td class='bottom' height='147'>");
  document.write("<img src='/images/bullet_diamond_black.gif' border='0' alt='[Bullet]'> ");   
  document.write("<a href='/' class='text_9pt_white'>Home</a> :: ");
  document.write("<a href='/about/' class='text_9pt_white'>About Us</a> :: ");
  document.write("<a href='/about/contact_us.htm' class='text_9pt_white'>Contact Us</a><br>");

  document.write("<div style='padding-top: .8in;'>");
  document.write("<a href='#top' class='text_9pt_white'>Top of Page</a>");
  document.write("</div>");
  document.write("</td></tr>");
}

function which_browser() {
// Browser Detection Javascript
// copyright 1 February 2003, by Stephen Chapman, Felgall Pty Ltd

// You have permission to copy and use this javascript provided that
// the content of the script is not changed in any way.

var agt=navigator.userAgent.toLowerCase();
if (agt.indexOf("chrome") != -1) return 'Chrome';
if (agt.indexOf("opera") != -1) return 'Opera';
if (agt.indexOf("staroffice") != -1) return 'Star Office';
if (agt.indexOf("webtv") != -1) return 'WebTV';
if (agt.indexOf("beonex") != -1) return 'Beonex';
if (agt.indexOf("chimera") != -1) return 'Chimera';
if (agt.indexOf("netpositive") != -1) return 'NetPositive';
if (agt.indexOf("phoenix") != -1) return 'Phoenix';
if (agt.indexOf("firefox") != -1) return 'Firefox';
if (agt.indexOf("safari") != -1) return 'Safari';
if (agt.indexOf("skipstone") != -1) return 'SkipStone';
if (agt.indexOf("msie") != -1) return 'Internet Explorer';
if (agt.indexOf("netscape") != -1) return 'Netscape';
if (agt.indexOf("mozilla/5.0") != -1) return 'Mozilla';
if (agt.indexOf('\/') != -1) {
if (agt.substr(0,agt.indexOf('\/')) != 'mozilla') {
return navigator.userAgent.substr(0,agt.indexOf('\/'));}
else return 'Netscape';} else if (agt.indexOf(' ') != -1)
return navigator.userAgent.substr(0,agt.indexOf(' '));
else return navigator.userAgent;
}

function show_date()
{
// ***********************************************
// AUTHOR: WWW.CGISCRIPT.NET, LLC
// URL: http://www.cgiscript.net
// Use the script, just leave this message intact.
// Download your FREE CGI/Perl Scripts today!
// ( http://www.cgiscript.net/scripts.htm )
// ***********************************************

// Get today's current date.
var now = new Date();

// Array list of days.
var days = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');

// Array list of months.
var months = new Array('January','February','March','April','May','June','July','August','September','October','November','December');

// Calculate the number of the current day in the week.
var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();

// Calculate four digit year.
function fourdigits(number)	{
	return (number < 1000) ? number + 1900 : number;
								}

// Join it all together
// today =  days[now.getDay()] + ", " +
//               months[now.getMonth()] + " " +
//                date + ", " +
//                 (fourdigits(now.getYear())) ;
// 
day_of_week = days[now.getDay()]
today =  months[now.getMonth()] + " " +
               date + ", " +
                (fourdigits(now.getYear())) ;

// Print out the data.
document.write("<span style='font: 9pt arial, helvetica, sans serif; font-weight: bold;'>"+day_of_week+", "+today+"</span>");
}

function show_year()
{
// ***********************************************
// AUTHOR: WWW.CGISCRIPT.NET, LLC
// URL: http://www.cgiscript.net
// Use the script, just leave this message intact.
// Download your FREE CGI/Perl Scripts today!
// ( http://www.cgiscript.net/scripts.htm )
// ***********************************************

// Get today's current date.
var now = new Date();

// Array list of days.
var days = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');

// Array list of months.
var months = new Array('January','February','March','April','May','June','July','August','September','October','November','December');

// Calculate the number of the current day in the week.
var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();

// Calculate four digit year.
function fourdigits(number)	{
	return (number < 1000) ? number + 1900 : number;
								}

// Join it all together
// today =  days[now.getDay()] + ", " +
//               months[now.getMonth()] + " " +
//                date + ", " +
//                 (fourdigits(now.getYear())) ;
// 
day_of_week = days[now.getDay()]
today =  months[now.getMonth()] + " " +
               date + ", " +
                (fourdigits(now.getYear())) ;

year =  (fourdigits(now.getYear())) ;

// Print out the data.
document.write(year);
}
