var InfoWindow
function Info2(Display) {
	ShowWindow2 = window.open(Display,"InfoWindow","toolbar=0,menubar=0,location=0,directories=0,status=0,scrollbars=0,resizable=0,copyhistory=0,width=325,height=320,top=20,left=200");
	if (ShowWindow2 == null) {
		alert('Pop Up Window Blocked! Please consider allowing pop ups for this web site.');
	}
	ShowWindow2.location.href = Display;
	ShowWindow2.blur();
	window.focus();
	self.InfoWindow = ShowWindow2;
}