function swapLnav(id, status){
	if (status) {
		if(document.images){
			document.images(id).src = '../img/common/' + id + '_on.gif';
		}
	} else {
		if(document.images){
			document.images(id).src = '../img/common/' + id + '.gif';
		}
	}
}
function swapLnavRoot(id, status){
	if (status) {
		if(document.images){
			document.images(id).src = 'img/common/' + id + '_on.gif';
		}
	} else {
		if(document.images){
			document.images(id).src = 'img/common/' + id + '.gif';
		}
	}
}
function mapWin(theUrl,height) {
	var theSetting = 'width=435,height=' + height + ',resizable=1,scrollbars=1';
	theWindow = window.open(theUrl, 'new_win', theSetting);
	theWindow.focus();
}