

		function doubleImage(src1, src2, txt) {
			this.img1=new Image();
			this.img1.src=src1;
			this.img2=new Image();
			this.img2.src=src2;
			this.txt=txt;
		}

		browserName=navigator.appName.substring(0,8);
		browserVer=parseFloat(navigator.appVersion);

			function ApriCredits()
			{
				var t, l, h, w, nScroll;
				var xPopup;

				h = 400; w = 350; nScroll=0;

				t = (screen.height - h) / 2;
				l = (screen.width - w) / 2;

				xPopup = window.open ("../Credits/CreditsIPSNet.asp", "Credits", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=" + w + ",height=" + h + ",left=" + l + ",top=" + t)
				xPopup.focus();
			}
