//Include this file on all your pages with a awanaClub and bsh link.

//you can change the 3 HREFs below to point to anywhere and this will then effect every page hat uses this 
//file and calls the method below

var leftPaneLinks = new Array();
    leftPaneLinks["topLink"] = "http://www.ofbchurch.org/vbs.html";
    leftPaneLinks["middleLink"] = "http://www.angelfoodministries.com/host.asp?id=12969";
    leftPaneLinks["bottomLink"] = "http://www.findithere.com";
    
function forwardTo(sLinkId) {
if(sLinkId == "bottomLink") {
window.open(leftPaneLinks["bottomLink"] ,"_blank");
} else {
window.location.href = leftPaneLinks[sLinkId];
}
return;
}