	
	function pop_up(url, name, w, h, scroll)
	{
		var winl = (screen.width - w) / 2; // 전체 화면 너비 - 팝업창 너비 크기 / 2 //중앙으로 띄울때 변수 
		var wint = (screen.height - h) / 2; // 전체 화면 높이 - 팝업창 높이 크기 / 2 //중앙으로 띄울때 변수 

		opt = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll;

		wnd = window.open(url, 'blank', opt);

		//return wnd;
	}