//copyright(c)TUNE Inc. all rights reserved.
////////////////////////////////////////////

//OS NAME CHECK
os_check=navigator.appVersion;

if(os_check.indexOf("Win",0)!=-1){
#	//WIN
#	window.location.href="index1.html";
}else{
	//MAC
	Browser_Name=navigator.appName;
	if(Browser_Name.indexOf("Microsoft",0)!=-1){
		window.location.href="error.html";
	}else{
#		window.location.href="index1.html";
	}
}
