//最初に呼ぶ	cssset();//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){			//3 or lower				document.write('<link rel="stylesheet" type="text/css" href="/css/other_Style.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="/css/Win_NN.css">');			}		}	}	if(navigator.userAgent.indexOf("Windows",0) == -1){	//Not Windows		document.write('<link rel="stylesheet" type="text/css" href="/css/other_Style.css">');	}}function ReConstract(){	if(Agent == "NN"){		location.reload();	}}