<?php
// Portugu�s Brasil
if ($HTTP_ACCEPT_LANGUAGE == "pt-br"){
header("Location: portugues.html");
}
// Ingl�s EUA
elseif ($HTTP_ACCEPT_LANGUAGE == "en-us"){
header("Location: ingles_eua.html");
}
// Alem�o
elseif ($HTTP_ACCEPT_LANGUAGE == "de-de"){
header("Location: alemao.html");
}
// Fran��s
elseif ($HTTP_ACCEPT_LANGUAGE == "fr-fr"){
header("Location: frances.html");
}
// Sueco
elseif ($HTTP_ACCEPT_LANGUAGE == "sv-se"){
header("Location: sueco.html");
}
// Chin�s
elseif ($HTTP_ACCEPT_LANGUAGE == "zh-cn"){
header("Location: chines.html");
}
// Thai
elseif ($HTTP_ACCEPT_LANGUAGE == "th-th"){
header("Location: thai.html");
}
// Ingl�s UK
elseif ($HTTP_ACCEPT_LANGUAGE == "en-gb"){
header("Location: ingles_uk.html");
}
?>