<!--
function swap(navID){
	if (document.all[navID].className == "leftNavCellOut"){
		document.all[navID].className = "leftNavCellOver";
	}else{
		document.all[navID].className = "leftNavCellOut";
	}
}

function openWin(url){
	window.open(url, "zoom", "width=650,height=460,scrollbars=yes")
}

function openWindow(url, width, height){
	window.open(url, "zoom", "width=" + width + ",height=" + height + ",scrolling=no, resize=no, top=100, left=100")
}

//function openWin(url, width, height){
//	window.open(url, "zoom", "width=" + width + ",height=" + height + ",scrolling=no, resize=no, top=100, left=100")
//}
//-->