<!--

// ChooseCSS Script
// Created By Satoru Moriwaki

path = "/scripts/maitake/";

// For Windows OS
if(windowsOS)
{
	if(ie4 || ie5 || ie55 || ie6)
	{
		document.write('<link href="'+ path +'css_ie_win.css" rel="styleSheet" type="text/css">');
	}
	else if(ns6 || ns7)
	{
		document.write('<link href="'+ path +'css_ns_win.css" rel="styleSheet" type="text/css">');
	}
	else
	{
		document.write('<link href="'+ path +'css_win.css" rel="styleSheet" type="text/css">');
	}
}
// For Mac OS
else if(macOS)
{
	if(ie4 || ie5)
	{
		document.write('<link href="'+ path +'css_ie_mac.css" rel="styleSheet" type="text/css">');
	}
	else if(ns6 || ns7)
	{
		document.write('<link href="'+ path +'css_ns_mac.css" rel="styleSheet" type="text/css">');
	}
	else
	{
		document.write('<link href="'+ path +'css_mac.css" rel="styleSheet" type="text/css">');
	}
}

//-->


