// fontsize with chkenv Ver.1.2
// 2003.11.21

function size_set(css_dir) {

	var tag_pre = '<link rel="stylesheet" type="text/css" href="';
	var tag_suf = '">';

	//Windows
	if(is_win) {
		//IE 4以上
		if (ua_IE4x) {
			document.write(tag_pre + css_dir + 'winie.css' + tag_suf);
		}
		// Netscape 4
		else if (ua_NS4x) {
			document.write(tag_pre + css_dir + 'winns4.css' + tag_suf);
		}
		// Netscape 6以上 & MOZILLA
		else if (ua_NS6x || ua_MOZ) {
			document.write(tag_pre + css_dir + 'winns6.css' + tag_suf);
		}
	}

	//Macintosh
	if(is_mac) {
		//IE 4以上
		if (ua_IE5x) {
			document.write(tag_pre + css_dir + 'macie.css' + tag_suf);
		}
		// Netscape 4
		else if (ua_NS4x) {
			document.write(tag_pre + css_dir + 'macns4.css' + tag_suf);
		}
		// Netscape 6以上 & MOZILLA
		else if (ua_NS6x || ua_MOZ) {
			document.write(tag_pre + css_dir + 'macns6.css' + tag_suf);
		}
	}
}
