<!--
var ne = (document.layers) ? 1 : 0;
var ie = (document.all) ? 1 : 0;

////////////////////////////////////////////////////////////////////
//  º¸Á¶Ã¢ ¶ç¿ï ¶§ È­¸é Áß¾Ó¿¡ À§Ä¡½ÃÅ°°í ½ÍÀ» ¶§ »ç¿ëÇÏ´Â ÇÔ¼ö   //
//  »ç¿ë¿¹ : °¡·Î 200, ¼¼·Î 100 ÇÈ¼¿ÀÇ »çÀÌÁî·Î º¸Á¶Ã¢À» ¶ç¿ï ¶§  //
//           win_open('abc.htm','win1',200,100,'toolbar=yes,...') //
//                                                                //
//             2000.07.18.    copyright(c) sslee                  //
////////////////////////////////////////////////////////////////////
function getOpt(wwidth,wheight,etcStr) {
	sx=screen.width;
	sy=screen.height;

	if (etcStr!='') etcStr = ',' + etcStr;

	if (ie)
		return 'width=' + wwidth + ',height=' + wheight + ',left=' + (sx-wwidth)/2 + ',top=' + (sy-wheight)/2 + etcStr;
	else if (ne)
		return 'width=' + wwidth + ',height=' + wheight + ',screenX=' + (sx-wwidth)/2 + ',screenY=' + (sy-wheight)/2 + etcStr;
	else
		return -1;
}

function win_open(Url,targetWin,wwidth,wheight,etcStr) {
	//popwin = window.open(Url,targetWin,getOpt(wwidth,wheight,etcStr));
	window.open(Url,targetWin,getOpt(wwidth,wheight,etcStr));
}

function win_hide(Url,targetWin) {
	sx=screen.width;
	sy=screen.height;

	if (ie)
		etcStr = 'left=' + (sx+1) + ',top=' + (sy+1);
	else if (ne)
		etcStr = 'screenX=' + (sx+1) + ',screenY=' + (sy+1);

	popwin = window.open(Url,targetWin,etcStr);
}
/////////////////////////////////////////////////////////////////////
//-->