function popupWinWithNoScroll(sUrl, nWidth, nHeight)  // ½ºÅ©·Ñ ¾ø´Â ÆË¾÷Ã¢
{
	//nLeft = (window.screen.width - nWidth ) / 2;
	//nTop  = (window.screen.height- nHeight) / 2;
	sF  = "";
	sF += "toolbar=no,location=no,menubar=no,status=no,directories=no,resizable=no,scrollbars=no";
	//sF += ",left=" + nLeft;
	//sF += ",top=" + nTop;
	sF += ",width=" +  nWidth;
	sF += ",height=" + nHeight;
	window.open(sUrl, "win_full", sF);
}

function popupWinWithScroll(sUrl, nWidth, nHeight) //½ºÅ©·Ñ ÀÖ´Â ÆË¾÷Ã¢
{ 
	nLeft = (window.screen.width - nWidth ) / 2;
	nTop  = (window.screen.height- nHeight) / 2;
	sF  = "";
	sF += "toolbar=no,location=no,menubar=no,status=no,directories=no,resizable=no,scrollbars=yes";
	sF += ",left=" + nLeft;
	sF += ",top=" + nTop;
	sF += ",width=" +  nWidth;
	sF += ",height=" + nHeight;
	window.open(sUrl, "", sF);
}

function work(title,init,menu,height,width) //ÀÛ¾÷Ã¢À» È°¼ºÈ­ ÇÑ´Ù.
{
	url = "workAREA.php?title="+title+"&init="+init+"&menu="+menu;
	popupWinWithNoScroll(url,height,width);
}

function show_zipcode(add1,add2) //¿ìÆí¹øÈ£ Ã£±â
{
	url = "lib/findZip.php?at1="+add1+"&at2="+add2;
	popupWinWithScroll(url,500,300)
}

function resizeWin(nWidth,nHeight) // Ã¢Å©±â Á¶Á¤
{
	top.window.resizeTo(nWidth,nHeight);
}
