function setAt(imgId) {
	if (document.getElementById) {
		document.getElementById('mainNav_' + imgId).style.backgroundImage = "url(images/at/" + imgId + ".png)";
	}
}

function setSubAt(mainId,imgId) {
	if (document.getElementById) {
		document.getElementById('subNav_' + mainId + '-' + imgId).style.backgroundImage = "url(images/at/" + mainId + "-" + imgId + ".png)";
	}
}

function repSales(showName) {
	bigWindow = window.open("repsales.asp?rep=" + showName,"bigWindow","width=800,height=600,scrollbars=0");
	bigWindow.focus();
}

function imgOn(imgName) {
	document [imgName].src = eval((imgName) + "On.src");
}
function imgOff(imgName) {
	document [imgName].src = "off/" + (imgName) + ".gif";
}