<!--
var aNoteWin, isIE4

var agt = navigator.userAgent.toLowerCase() // Make easier for testing
this.major = parseInt(navigator.appVersion)
this.ie = (agt.indexOf("msie") != -1)
isIE4 = (this.ie && (this.major == 4))

function GetPositionLeft(nWindowLeft) {

	// Get client width and height
	var nClientWidth;
	nClientWidth = self.screenLeft;

	// Work-out window placements
	if (nClientWidth >= 0) {
		nWindowLeft = nClientWidth + 5;
	}
	
	return nWindowLeft;
}

function GetPositionTop(nWindowTop) {

	// Get client width and height
	var nClientHeight;
	nClientHeight = self.screenTop;

	// Work-out window placements
	nWindowTop = nClientHeight;
	
	return nWindowTop;
}

function popupnews(topic) {
	
	if (isIE4) {
		var nWindowTop = GetPositionTop(nWindowTop);
		var nWindowLeft = GetPositionLeft(nWindowLeft);
		
		nWindowTop = nWindowTop - 80;
		nWindowLeft = nWindowLeft + 10;
		
	} else {
		var nWindowTop = 10;
		var nWindowLeft = 10;
	}
	
	if (self.aPopUp == null) {
		name = "NewsPop";
		aPopUp= window.open(topic,'PopupBrochure','scrollbars=yes,location=no,status=no,menubar=0,directories=no,top='+ nWindowTop +',left='+ nWindowLeft +',width=730,height=500,titlebar=no');
		self.aNoteWin = aPopUp;
	}
	else {
		name = "NewsPop";
		closePicture()
		aPopUp= window.open(topic,'PopupBrochure','scrollbars=yes,location=no,status=no,menubar=0,directories=no,top='+ nWindowTop +',left='+ nWindowLeft +',width=730,height=500,titlebar=no');
		self.aNoteWin = aPopUp;
	}
}

function closePicture(which) {
	if (self.aPopUp != null) {
		self.aPopUp = null;
		self.aNoteWin.close();
	}
}

//-->