﻿// JScript File
			var winPop = null;
			function popup(file) {
				var h = 650;
				var w = 600;
			
				var winw = (screen.width - w) / 2;
				var wint = (screen.height - h) / 2;
				
				if (!winPop || winPop.closed ) {
					winPop = window.open(file,"","height=" + h + ",width=" + w + ",top=" + wint + ",left=" + winw +",toolbar=no,directories=no,menubar=no,status=no,resizable=yes,scrollbars=yes")
				}
				else {
					winPop.close()
					winPop = window.open(file,"","height=" + h + ",width=" + w + ",top=" + wint + ",left=" + winw +",toolbar=no,directories=no,menubar=no,status=no,resizable=no,scrollbars=yes")
				}
			}

			function WinOpen(file) {
			
				var h = 500;
				var w = 400;
			
				var winw = (screen.width - w) / 2;
				var wint = (screen.height - h) / 2;
				
				if (!winPop || winPop.closed ) {
					winPop = window.open(file,"","height=" + h + ",width=" + w + ",top=" + wint + ",left=" + winw +",toolbar=no,directories=no,menubar=no,status=no,resizable=yes,scrollbars=yes")
				}
				else {
					winPop.close()
					winPop = window.open(file,"","height=" + h + ",width=" + w + ",top=" + wint + ",left=" + winw +",toolbar=no,directories=no,menubar=no,status=no,resizable=yes,scrollbars=yes")
				}
			}
