window:
	res:
		windowType	wstandard
	endres:
endwindow:
close:
	res:
		bitmapPath	$(bitmaps)
		bitmapFile	CLOSE::CBM
	endres:
endclose:
title:
	res:
		leftLabel	'ڱ ȣƮ '
		leftKanjiFont	$(kanjiFont)
		leftFont	$(kanaFont)
		switch $(COLOR)
			case MONO:
				bitmapPath	$(bitmaps)
				backgroundFile	GRAY3
				transparent	false
				break
		endswitch
	endres:
endtitle:
dialog: dialogs
	res:
		defaultDistance		#(fWidth)
		dialogType		modeless
		defaultButton		ok
	endres:
	ditem: info
		res:
			itemType	stattext
			string		'ȣƮ:$(HOST_NAME)\n巹:$(HOST_ADDR)\nõ 巹:$(PRO_ADDR)'
			kanjiFont	$(kanjiFont)
			font		$(kanaFont)
			vertDistance	#(fWidth)*2
			horizDistance	#(fWidth)*7
			width		#(fWidth)+1*30
			height		#(fHeight)*3
			shadowWidth	0
			borderWidth	2
		endres:
	endditem:
	ditem: msg1
		res:
			itemType	bitmap
			fromVert	info
			leftLabel	' ȣƮ Ʈũ   ,'
			leftKanjiFont	$(kanjiFont)
			leftFont	$(kanaFont)
			vertDistance	#(fWidth)*2
			horizDistance	#(fWidth)
		endres:
	endditem:
	ditem: msg2
		res:
			itemType	bitmap
			fromVert	msg1
			leftLabel	'⺻ Ͽ ֽʽÿ.'
			leftKanjiFont	$(kanjiFont)
			leftFont	$(kanaFont)
			vertDistance	2
			horizDistance	#(fWidth)
		endres:
	endditem:
	ditem: ok
		res:
			itemType	button
			label		' ϡ '
			kanjiFont	$(kanjiFont)
			font		$(kanaFont)
			fromVert	msg2
			vertDistance	#(fWidth)*2
			horizDistance	#(fWidth)*2
		endres:
		act:
			close
		endact:
	endditem:
enddialog:
proc: pre
	$(bin)/Snet_check -p
	put $(stdout) $(PRO_ADDR)
endproc:
proc: close
	close
endproc:
