//Rollovers

function toggleOn(elemid) {
	document.getElementById(elemid).src = "../graphics/glossbutover.png";
}

function toggleOff(elemid) {
	document.getElementById(elemid).src = "../graphics/glossbut.png";
}

//popup enlarged images
function popup(linkobj, winname, wid, hei) {
	if(!window.focus) return true;
	href=linkobj.href;
	window.open(href, winname, 'width='+(18+wid)+',height='+(26+hei)+',status=no,scrollbars=yes');
	return false;
}
	
function popupimg(imgpa, wid, hei, winname) {
	if(!window.focus) return true;
	window.open(imgpa, winname, 'width='+(wid+18)+',height='+(hei+26)+',status=no,scrollbars=yes');
	return false;
}

