// @file msg.js
// @version 1   12/30/2004
// @author Chris Mckelvey
// @Midstates Speciality Graphics



// Draws the bottom navigation table for all Web pages
function DrawFooter()
{
Footer = ''+
'<table BORDER=0 CELLSPACING=0 CELLPADDING=0   WIDTH="100%">'+
'<tr><td>'+
'<p><font SIZE="-4"><A HREF="index.htm">home</A>'+
'&nbsp;&nbsp;<A HREF="about.htm">about&nbsp;us</A>'+
'&nbsp;&nbsp;<A HREF="products.htm">products</A>'+
'&nbsp;&nbsp;<A HREF="services.htm">services</A>'+
'&nbsp;&nbsp;<A HREF="new_products.htm">what&#39;s&nbsp;new</A>'+
'&nbsp;&nbsp;<A HREF="contact.htm">contact us</a>'+
'&nbsp;&nbsp;<A HREF="2008_catalog.pdf">download&nbsp;catalog</A><br>'+
'<A HREF="yard_signs.htm">yard&nbsp;signs</A>'+
'&nbsp;&nbsp;<A HREF="magnets.htm">magnets</A>'+
'&nbsp;&nbsp;<A HREF="point_purchase.htm">point&nbsp;of&nbsp;purchase</A>'+
'&nbsp;&nbsp;<A HREF="decals.htm">decals</A>'+
'&nbsp;&nbsp;<A HREF="specialty.htm">specialty&nbsp;products</a></font></p></td>'+
'</tr></table><font SIZE="-4"><br>Call or write for a catalog today.<br><br>Contents copyright 2005 Midstates Specialty Graphics  -  All rights reserved</FONT><br>';
document.write(Footer);
}


// Draws the month, day and date calendar for the web site
function WeCalendar()
{
// Array of day names
var dayNames = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
// Array of month Names
var monthNames = new Array(
"January","February","March","April","May","June","July","August","September","October","November","December");
var now = new Date();
document.write(dayNames[now.getDay()] + ", " + monthNames[now.getMonth()] + " " + now.getDate() + ", " + "2005" + "&nbsp;&nbsp;&nbsp;</td>");
}