any script can detect IE or window's language and redirect to the page??
eg :
if($language == "zh-tw") {
header("location : chinese1.html");
} else if($language == "zh-cn") {
header("location : chinese2.html");
} else {
header("location : english.html");
}