//default JavaScript

//preload images
arrSections = new Array("about", "acms", "find", "faq", "links", "contact", "members");
for (i = 0; i < arrSections.length; i++) {
	eval("nav_" + arrSections[i] + " = new Image()");
	eval("nav_" + arrSections[i] + ".src = '" + BasePath + "/images/nav_" + arrSections[i] + ".gif'");
	eval("nav_" + arrSections[i] + "_over = new Image()");
	eval("nav_" + arrSections[i] + "_over.src = '" + BasePath + "/images/nav_" + arrSections[i] + "_over.gif'");
}

//change images
function chgImg(thisimg,thatimg) {
	document.images[thisimg].src = ((thatimg.indexOf(".") > -1 ) ? thatimg : eval(thatimg + ".src"));
}

function popUpWin(loc,winname,opts) {
	var popUpWindow = window.open(loc,winname,opts);
}
