		function SetFrm(src,info){
			var tmp = 'BUDtmp=' + escape(info);
			document.cookie = tmp;
			MainFrm.location = src;
		}
		function InitProc(){
			var Uid = GetCookie('DUBUID');
			var Pw  = GetCookie('DUBPW'); 			

			var App = navigator.appName.substring(0,9); 
			if (App == 'Microsoft') {
				TopForm.txt_ID.value = Uid;
				TopForm.Txt_PassWD.value = Pw;
			} else {
				document.getElementById("txt_ID").value = Uid;
				document.getElementById("Txt_PassWD").value = Pw;
				document.getElementById("primary").style.width  = 782;
				document.getElementById("primary").style.height = 730;
				document.getElementById("MainFrm").style.width  = 781; 
				document.getElementById("MainFrm").style.height = 675; /* 675 */
				document.getElementById("secondary").style.height = 730; 
				document.getElementById("FootTBL").style.marginLeft = '60'; 
			/*	alert('AAAAAok');   */
			}
		}
		function GetCookie(CookieID) {
			/* Cookie Read */
			var tmp = document.cookie + ';';
			var p1 = tmp.indexOf(CookieID);
			if (p1 != -1) {
				var p2 = tmp.indexOf('=',p1) + 1;
				var p3 = tmp.indexOf(';',p2);
				return unescape(tmp.substring(p2,p3));
			} else {
				return '';
			}
		}
		function Login(){
		    var	Para;
			var App = navigator.appName.substring(0,9); 
			if (App == 'Microsoft') {
				Para = this.TopForm.txt_ID.value + '_' + this.TopForm.Txt_PassWD.value;
			} else {		
				Para = document.getElementById("txt_ID").value + '_' + document.getElementById("Txt_PassWD").value;  
			}
			SetFrm('zUserCheck.aspx',Para);		
		}
