	function notice(V) {
		if (V == "Z")		{ Url = './Jdata/notice/noticelist.php'}
		else				{ Url = './Jdata/notice/noticeview.php?id='+V; } 
		call_popup(Url, 'notice', 580, 400, 100, 30, 1); 
	}

	function call_popup(URL, TARG, WV, HV, PW, PT, CV) {
		if (!URL) {
			alert(" call_popup() ÇÔ¼ö ÀÎÀÚ ¿¡·¯ !! \n -> URL °ªÀ» ³Ö¾îÁÖ¼¼¿ä ");
			return true;
		}
		if (!TARG)		TARG 	= 'pop1';
		if (!WV)		WV 		= 300;
		if (!HV)		HV 		= 200;
		if (!PW)		PW 		= 10;
		if (!PT)		PT 		= 10;
		POP = window.open(URL, TARG, "menubar=0, toolbar=0,location=0,directory=0,scrollbars="+CV+",resizable=0,width="+WV+", height="+HV+",left="+PW+", top="+PT);
		POP.focus();
	}

