<!--

var aNoteWin

function popup2(topic) {
	
	if (isIE4) {
		var nWindowTop = GetPositionTop(nWindowTop);
		var nWindowLeft = GetPositionLeft(nWindowLeft);
		
		nWindowTop = nWindowTop - 95;
		nWindowLeft = nWindowLeft + 10
		
		
	} else {
		var nWindowTop = 10;
		var nWindowLeft = 15;
	}
	
	if (self.aPopUp2 == null) {
		aPopUp2 = window.open(topic,'Popup2','scrollbars=yes,location=no,status=no,menubar=1,directories=no,top='+ nWindowTop +',left='+ nWindowLeft +',width=620,height=480,titlebar=no');
		self.aNoteWin = aPopUp2;
	}
	else {
		closePicture()
		aPopUp2 = window.open(topic,'Popup2','scrollbars=yes,location=no,status=no,menubar=1,directories=no,top='+ nWindowTop +',left='+ nWindowLeft +',width=620,height=480,titlebar=no');
		self.aNoteWin = aPopUp2;
	}
}

function closePicture(which) {
	if (self.aPopUp != null) {
		self.aPopUp = null;
		self.aNoteWin.close();
	}
}

//-->