<!--

		document.onkeydown = onKeyDown;

		function onKeyDown( event )
		{
			var e = event;
			if ( event == null ) e = window.event;

			if ( e.keyCode == 13 ) goIDCheckIpin();
		}

		function loadAction()
		{
			if ( document.all.PingInfo.value == "" )
			{
				alert( "ÇÑ±¹½Å¿ëÁ¤º¸(ÁÖ)ÀÇ °³ÀÎÀÎÁõÅ° ¼­ºñ½º°¡ Á¡°ËÁßÀÔ´Ï´Ù.\nÀá½ÃÈÄ ´Ù½Ã ½ÃµµÇÏ½Ã±â ¹Ù¶ø´Ï´Ù.\n\n»óÅÂ°¡ °è¼ÓµÇ¸é »çÀÌÆ®°ü¸®ÀÚ¿¡°Ô ¹®ÀÇÇÏ½Ê½Ã¿À" );
				return;
			}
		}
		
		function validate()
		{
			var NiceId		= document.getElementById( "NiceId" );
			var PingInfo	= document.getElementById( "PingInfo" );
			var ReturnURL	= document.getElementById( "ReturnURL" );
			
			if ( NiceId.value == "" )
			{
				alert( getCheckMessage( "S60" ) );
				NiceId.focus();
				return false;
			}
			
			if ( PingInfo.value == "" )
			{
				alert( getCheckMessage( "S61" ) );
				return false;
			}

			if ( ReturnURL.value == "" )
			{
				alert( getCheckMessage( "S64" ) );
				ReturnURL.focus();
				return false;
			}
			
			return true;
		}
		
		function goIDCheckIpin()
		{
			if ( validate() == true )
			{
				var strNiceId 		= document.getElementById( "NiceId" ).value;
				var strPingInfo		= document.getElementById( "PingInfo" ).value;
				var strOrderNo		= document.getElementById( "OrderNo" ).value;
				var strInqRsn		= document.getElementById( "InqRsn" ).value;
				var strReturnUrl	= document.getElementById( "ReturnURL" ).value;
				var strSIKey 		= document.getElementById( "SIKey" ).value;
				
				document.reqForm.SendInfo.value = makeCertKeyInfoPA( strNiceId, strPingInfo, strOrderNo, strInqRsn, strReturnUrl, strSIKey );
				document.reqForm.ProcessType.value = strPersonalCertKey;
				
				var popupWindow = window.open( "", "popupCertKey", "top=100, left=200, status=0, width=417, height=490" );

				document.reqForm.target = "popupCertKey";
				document.reqForm.action = strCertKeyServiceUrl;
				document.reqForm.submit();
				popupWindow.focus();
			}
			return;
		}

//-->
