var winKey;

	function DisplayKey(Page, Position) {
			var strProperties;
			
			strProperties = 'scrollbars=no,' + Position
			
			//if (winKey == null || winKey.closed) {
				winKey = window.open(Page, "winKey", strProperties);
			//}
				
	}
	
	function CloseKeyWindow() {
		if (winKey != null && winKey.closed == false) {
			winKey.close();
		}	
	}

