﻿// JScript 파일

//function 우편번호검색()
//{
//    var pop_opener = window.open('/inc/post.aspx?a=' + a + '&b=' + b, '우편번호', 'height=300,width=500 ,top=100,left=100,scrollbars=1,toolbar=0,status=0,resizable=0 ,menubar=0');

//alert(a);

//}

function 우편번호검색()
{
    var pop_opener = window.open('/inc/post.aspx?a=' + a + '&b=' + b, '우편번호', 'height=300,width=500 ,top=100,left=100,scrollbars=1,toolbar=0,status=0,resizable=0 ,menubar=0');
}


	//maxlength 만큼 옮기면 다음으로 이동하기....
	function nextFocus(sFormName,sNow,sNext)
	{
		var sForm = 'document.'+ sFormName +'.'
		var oNow = eval(sForm + sNow);
	
		if (typeof oNow == 'object')
		{
			if ( oNow.value.length == oNow.maxLength)
			{
				var oNext = eval(sForm + sNext);
	
				if ((typeof oNext) == 'object')
					oNext.focus();
			}
		}
	}
	
	
	
function pupUpOpenDBook(theURL)
{
	winName = "dBookWindow";
	features = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,left=0,top=0,fullscreen=1";
	popupWin = window.open(theURL,winName,features);

	if (popupWin != null)
	{
		popupWin.focus();
	}
}

