<?
$exag = explode("/", getenv('HTTP_USER_AGENT'));
$br = $exag[0];
if ($br=="Mozilla" || $br=="Opera" || $br=="Opera/9.10" || $br=="IExplore" || $br=="Opera/8.01")
{
header('location: http://rban.org');
}
else
{
header('Location: http://rban.org');
};
?>