<!--
var isOpen = false
function newCalcWindow(url) {
	if (navigator.appVersion.charAt(0) >= 4) {
		var width = 600
		var height = 610
		var leftPosition = (window.screen.width - width) / 2
		var topPosition = (window.screen.height - height) / 2.5

		if (navigator.appName == "Microsoft Internet Explorer") {
			if (isOpen == true) {
				theWindow.close()
			}
			theWindow = window.open(url,'newWindow','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=' + width + ',height=' + height + ',top=' + topPosition + ',left=' + leftPosition)
			isOpen = true
		}
		else if (navigator.appName == "Netscape") {
			theWindow = window.open(url,'newWindow','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=' + width + ',height=' + height + 'top=' + topPosition + ',left=' + leftPosition)
			theWindow.focus()
		}
	}
	else {
		document.location = url
	}
}
//-->