		function gotFocus(elem){
			elem.style.backgroundColor="#D6F7FF"
		}
		function lostFocus(elem){
			elem.style.backgroundColor="#ffffff"
		}
		
		function openPopUp(name){
			var width = 700
			var height = 300
			var left = (screen.width - width) / 2
			var top = (screen.height - height) / 2
		
			var attr = "left=" + left + ",top= " 
			   + top +",width=" + width + 
			   ",height=" + height + ",scrollbars"
			window.open(name, (new Date()).getSeconds().toString(), attr);
		}
		
		function initKeyEvents(){
			document.onkeypress = keyEvent;
		}
		
		function keyEvent(e) {
			var key
			var eForm = document.getElementById("eForm");
		
			if (document.all) {
				key = window.event.keyCode
			} else {
				key = e.which
			}
		
			switch (key) {
			case 13:
				__doPostBack(keyButton,'')
			}
		}
		