<!-- Hide from JavaScript-Impaired Browsers

// to display the date and time

var isnMonths=new Array("January","February","March","April","May","June","July","August","September","October","November","December");
var isnMonths2=new Array("january","february","march","april","may","june","july","august","september","october","november","december");
var isnDays= new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday");

today=new Date();
hrs=today.getHours();
min=today.getMinutes();
sec=today.getSeconds();

clckh=""+((hrs>12)?hrs-12:hrs);
clckm=((min<10)?"0":"")+min;
clcks=((sec<10)?"0":"")+sec;
clck=(hrs>=12)?"p.m.":"a.m.";


function DrawHeader()
{
	document.write("<div id=\"header\">");
	document.write("<div class=\"spacer\">&nbsp;</div>");
	document.write("<p align=\"center\">");
	document.write("<a href=\"index.html\"><img src=\"navigation_images/topbar2.jpg\" width=\"700\" height=\"60\" alt=\"South Puget Sound Macintosh Users Group\"></a>");
	document.write("</p>");
	document.write("</div>");
}

function DrawMonthPic(month)
{
	document.write("<p align=\"center\">");
	document.write("<img src=\"home_images/main_window/"+isnMonths2[today.getMonth()]+".gif\" ");
	document.write("height=\"80\" width=\"180\" alt=\""+isnMonths[today.getMonth()]+"\">");
	document.write("</p>");
}

function DrawAboutOurClub()
{
	document.write("<p>&nbsp;</p>");
	document.write("<h4>About Our Group</h4>");
	document.write("<p>");
	document.write("The South Puget Sound Mac Users Group is made up of users of computers made by Apple. People can use computers better by sharing what they know.");
	document.write("</p>");
	document.write("<p>");
	document.write("Our group attracts a diverse group of users. We are here for all users who want to do more with their computer but also want to have fun.");
	document.write("</p>");
}

function DrawMainFooter()
{
	document.write("<p>");
	document.write("&copy; 2006 - South Puget Sound Macintosh Users Group<br>");
	document.write("South Puget Sound Macintosh Users Group is an independent user group and has not been authorized, sponsored, or otherwise approved by Apple Computer, Inc.<br>");
	document.write("</p>");
	document.write("<p>");
	document.write("Apple, the Apple logo, and Macintosh are trademarks of Apple Computer, Inc., registered in the U.S. and other countries.");
	document.write("</p>");
	document.write("<p align=\"center\">");
	document.write("<a href=\"http://www.apple.com/usergroups/find/\"><img src=\"navigation_images/apple_users.gif\" height=\"43\" width=\"225\" alt=\"Apple User Groups\"></a>");
	document.write("</p>");
}

function DrawLeftMenu()
{
	document.write("<div id=\"nav\">");

		document.write("<h3>"
		+isnDays[today.getDay()]+", "+isnMonths[today.getMonth()]+" "
		+today.getDate()+", "+today.getFullYear()+" "+"</h3>");

	document.write("<h2><a href=\"http://spsmac.org/cgi-bin/discus/discus.cgi\">Discussion Forum</a></h2>");

	document.write("<p>");
	document.write("<a href=\"index.html\">Home</a><br>");
	document.write("<a href=\"location.html\">Location</a><br>");
	document.write("<a href=\"members.html\">Members</a><br>");
	document.write("<a href=\"join.html\">Join Us</a><br>");
//	document.write("<a href=\"resources.html\">Links</a><br>");
	document.write("</p>");

	document.write("<hr align=\"left\" width=\"80%\">");
	document.write("&nbsp;<br>");

	document.write("<p>");
	document.write("<a href=\"http://www.apple.com/hotnews/\">Apple Hot News</a><br>");
	document.write("<a href=\"http://www.macintouch.com/\">MacInTouch</a><br>");
	document.write("<a href=\"http://www.macfixit.com/\">MacFixIt</a><br>");
	document.write("<a href=\"http://www.lowendmac.com/\">Low End Mac (for older Macs)</a><br>");
	document.write("<a href=\"http://www.macresource.com/\">Mac Resource Page</a><br>");
	document.write("<a href=\"http://www.versiontracker.com/\">VersionTracker</a><br>");
	document.write("<a href=\"http://www.macnn.com/\">MacNN - Apple and Mac News</a><br>");
	document.write("<a href=\"http://www.macsurfer.com/\">MacSurfer Headline News</a><br>");
	document.write("</p>");

	document.write("&nbsp;<br>");

	document.write("<form action=\"http://www.google.com/search\" method=get>");
	document.write("<a href=\"http://www.google.com/mac\">");
	document.write("<img src=\"http://www.google.com/logos/Logo_40wht.gif\" border=\"0\" alt=\"Google\">");
	document.write("</a>");
	document.write("<font size=\"-1\">");
	document.write("<center>");
	document.write("<input name=q size=22 value=\"\">");
	document.write("<input type=submit value=\"Google Search\" name=\"submit\">");
	document.write("</center>");
	document.write("</font>");
	document.write("</form>");

	document.write("<div class=\"spacer\">&nbsp;</div>");
	document.write("</div>");
}

// -- end hiding -->


