function handleResize() {
	if(is.ns4) {
		if (innerWidth != origWidth || innerHeight != origHeight){
			origWidth = innerWidth;
			origHeight = innerHeight;
			location.reload();
			}
		}
	if(is.ie4) setMenus();
	}
function setMenus() {
	if(is.ie4) { 
		bodyPos = (document.body.clientWidth);
		bodyBottom = (document.body.clientHeight - (260 - document.body.scrollTop));
		}			
	if(is.ns4) {
		bodyPos = (window.innerWidth);
		bodyHt = (window.innerHeight);
		}
	popUpLeft = bodyPos - 100;
	
	if(is.ie4) {
		document.all.nicki.style.left = popUpLeft;
		document.all.nicki.style.top = bodyBottom;
		}
	if(is.ns4) {  	// The below numbers set the NETSCAPE layer position (TOP)
		document.nicki.moveTo(popUpLeft,bodyBottom);
		}

}
