
//CSSSelect
function cssset(){

	if(navigator.userAgent.indexOf("Windows",0) != -1){
	//Windows
		if(navigator.appName.indexOf("Microsoft",0) != -1){
		//IE
			if(navigator.appVersion.charAt(0) >= 4){
				document.write('<link rel="stylesheet" href="/2003/common/Win_IE.css" type="text/css">');
			}
			//3 or lower
			if(navigator.appVersion.charAt(0) < 4){
			//3 or lower
				document.write('<link rel="stylesheet" type="text/css" href="/2003/common/Other.css">');
			}
		}
		if(navigator.appName.indexOf("Netscape",0) != -1){
			//NN
			if(navigator.appVersion.charAt(0) < 5){
			//4°Ê²¼
				document.write('<link rel="stylesheet" type="text/css" href="/2003/common/Win_NN.css">');
			}
		}
	}

	if(navigator.userAgent.indexOf("Windows",0) == -1){
	//Not Windows
		document.write('<link rel="stylesheet" type="text/css" href="/2003/common/Other.css">');
	}

}


