




function common (lctn)
{
if (arguments.length <= 0)
lctn = "."
if (lctn.length <= 0)
lctn = "."
lctn += "/"

document.write("<td align='center' valign='top'"
+ "width='205' bgcolor='#E0E0B0'>")
document.write("<img src='" + lctn + "images/logo.gif' "
+ "alt='Compass Logo'>")
document.write("<h2>A place where everyone is welcome</h2>")

buttons(lctn)

document.write("<br><p>310 Lakeshore Road West")
document.write("<br>Mississauga, Ontario")
document.write("<br>L5H 1G8")
document.write("<br>Tel: 905-274-9309")
document.write("</p>")
document.write("<em class='note'>Questions about The Compass?")
document.write("<br>Please e-mail ")
Send("compass", "here")
document.write(".<br><br>")
document.write("To comment on this web site, ")
document.write("or to submit material to be posted,")
document.write("<br>please e-mail ")
Send("website", "here")
document.write(".<br><br>")
document.write("&copy; Copyright 2005 - Lakeshore Community Outreach Centre Inc.")
document.write("</em></td>")
}



function buttons (lctn)
{
base = lctn + "buttons/"

showButton("index.html", base, "home.gif", "Home Button")
document.write("<br>")
showButton("mission.htm", base, "mission.gif", "Mission Button")
document.write("<br>")
showButton("programs.htm", base, "programs.gif", "Programs Button")
document.write("<br>")
showButton("events.htm", base, "events.gif", "Events Button")
document.write("<br>")
showButton("newsletter.pdf", base, "newsletter.gif", "Newsletter Button", true)
document.write("<br>")
showButton("help.htm", base, "help.gif", "Help Button")
document.write("<br>")
showButton("needed.htm", base, "needed.gif", "Needed Button")
document.write("<br>")
showButton("links.htm", base, "links.gif", "Links Button")
}

function showButton(target, lctn, name, alt, newpg)
{
if (newpg)
target += "' target='_blank"
document.writeln("<a href='" + target + "'>"
+ "<img src='" + lctn + name + "' "
+ "alt=' " + alt + "' border='0'></a>")
}

