<!--
	function openWnd(url,wnd_name,width,height,scrollbars){
		
		wnd_name = "_blank";
		var stScrollBar = (scrollbars ? 'yes' : 'no');
		
		if (top[wnd_name]!=null && typeof(top[wnd_name])=='object' && !top[wnd_name].closed && top[wnd_name].load_flag==1) {
		if (top[wnd_name].document.location.href!=url) top[wnd_name].document.location.href=url;
			top[wnd_name].focus();
		} else {
			top[wnd_name]=window.open(url,wnd_name,'width='+width+',height='+height+',status=yes,menubar=no,resizable=yes,scrollbars='+stScrollBar+',left='+String((screen.width-width)/2)+',top='+String((screen.height-height)/2));
//			window.open(url,wnd_name,'width='+width+',height='+height+',status=yes,menubar=no,resizable=yes,scrollbars='+stScrollBar+',left='+String((screen.width-width)/2)+',top='+String((screen.height-height)/2));
//			window.open(url,"_blank");
		}
	}
// -->