upd = "31-Dec-2009"
menuItem = new Array(0); menuDesc = new Array(0);
menuItem[1] = "main.html"; menuDesc[1] = "Home Page";
menuItem[2] = "calendar.html"; menuDesc[2] = "Club Meetings";
menuItem[3] = "../lib/colby.lib.html"; menuDesc[3] = "In Defense";
menuItem[4] = "links.html"; menuDesc[4] = "Smoking Links";
menuItem[5] = "../lib/main.lib.html"; menuDesc[5] = "Politics/Health";

menuItem[6] = "http://www.westcoastpipeshow.com/"; menuDesc[6] = "West Coast Pipe Show";
menuItem[7] = "news.html"; menuDesc[7] = "Club Notes";
menuItem[8] = "article.html"; menuDesc[8] = "Chicago Report";
menuItem[9] = "about.html"; menuDesc[9] = "About the SWPCL";
menuItem[10] = "tribute.html"; menuDesc[10] = "Broken Pipes";
//*****************************************************
function locFrame(file){
parent.main.location = file;
return false;
}//end locFrame

function loadFrame(n){
code = "<a href='locFrame(\"" +menuItem[n]+ "\");' onClick='return locFrame(\"" +menuItem[n]+ "\");' onMouseOut='window.status=\"\";return true;' onMouseOver='window.status=\"" +menuDesc[n]+ "\";return true;'>";
return code;
}//end loadFrame

function mFrame(){
code = "<center>";
code += "<style type='text/css'>";
code += "a:link,a:visited{text-decoration:none;color:007000;font-weight:bold}";
code += "td{font-family:'georgia';font-size:8pt}";
code += "</style>";

code += "<table width=90% border=1 cellpadding=0><tr><td>";
code += "<table width=100%><tr>";
for (i = 1; i < 11; i += 1){
	code += "<td align=center>" +loadFrame(i);
	code += menuDesc[i]+ "</a></td>";
	if (i == 5){ code += "</tr><tr>"; }
}
code += "</tr></table>";
code += "</td></tr></table>";

code += "<table width=90% border=0><tr>";
code += "<td width=33% align=center>©2010 SWPCL</td>";
code += "<td width=33% align=center><a href='mailto:info@swpcl.org'>info@swpcl.org</a></td>";
code += "<td width=33% align=center nowrap>Updated " +upd+ "</td>";
code += "</tr></table>";

document.open("text/html","replace");
document.writeln(code);
document.close();
}//end mFrame

