//½ºÅ©·Ñ¹Ù¾øÀ½,¸®»çÀÌÁî¾ÈµÅ´Â »õÃ¢¿­±â
	function noScroll(width,height,url,name) {
	var stLEFT = (window.screen.width - width) / 2;
	var stTOP = (window.screen.height - height) / 2;

	msgWindow=window.open(url,name,'statusbar=no,scrollbars=no,status=no,resizable=no,width='+width+',height='+height+',left='+stLEFT+',top='+stTOP);
	}
	function yScroll(width,height,url,name) {
	var stLEFT = (window.screen.width - width) / 2;
	var stTOP = (window.screen.height - height) / 2;

	msgWindow=window.open(url,name,'statusbar=no,scrollbars=yes,status=no,resizable=no,width='+width+',height='+height+',left='+stLEFT+',top='+stTOP);
	}