<!--
	var winW, winH, ns4, ie4;
	ns4 = (document.layers)? true:false;
	ie4 = (document.all)? true:false;

	function resizeMe() {
		winW = (ns4)? window.innerWidth-16 : document.body.offsetWidth-20;
		winH = (ns4)? window.innerHeight : document.body.offsetHeight;
		doCenter();
	}

	// Netscape Resize Fix
	if (document.layers) {
		widthCheck = window.innerWidth;
		heightCheck = window.innerHeight;
		window.onResize = resizeFix;
	}
	function resizeFix() {
		if (widthCheck != window.innerWidth || heightCheck != window.innerHeight)
		document.location.href = document.location.href;
	}

	function doCenter() {
		var obj;
		obj = eval("mainDiv");
		obj.style.left = ((winW/2)- 375)-13;
		if (document.body.offsetHeight > document.body.scrollHeight) 
		{
			obj.style.height = document.body.offsetHeight;
		}
		else
		{
			obj.style.height = document.body.scrollHeight;
		}
		obj.style.display='inline';
//		obj = eval("backwhite");
//		obj.style.height = document.body.scrollHeight;
	}
	function swapImage(what,which) {
		what.src = 'images/'+which;
	}

function doAdmin(what) {
	if (what == 'imagelib')
	{
		showLib('viewimagerepository.asp');
	}
	else
	{
		if (what != null)
		{
		window.open(what,"_self");
		}
	}
}
	function doMenu(what,how) {
		if (how == 'over')
		{
			what.className='menuBoxHover';
		}
		else
		{
			what.className='menuBox';
		}
	}
function changeClass(what,cl) {
	eval(what).className = cl;
}
-->
