wPop=null;
function goPopup(sUrl,nWidth,nHeight) {
if (wPop)
	wPop.close();
wPop=window.open(sUrl,null,"height="+nHeight+",width="+nWidth+",status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=no");
wPop.focus();
}

function onDoc() {
	fixSize();
}

function fixSize()
{
	var divMap = document.all.divmap;
	var divNav = document.all.divnav;
	var divRight = document.all.divright;
	var maxheight=Math.max(divNav.offsetHeight,divMap.offsetHeight,divRight.offsetHeight);
	if (maxheight==divNav.offsetHeight) {
		divMap.style.height = maxheight-40;
		/* divRight.style.height = maxheight-40; */
	}
	else {
		divNav.style.height = maxheight+40;
		divMap.style.height = maxheight;
		/* divRight.style.height = maxheight; */
	}
	
}
