<?
$redirects = array(
'http://games.telenet.be', // default
'http://www.telenet.be', // id 1
'http://telemeter.telenet.be', // id 2
);
$getid = floor($_GET['id']);
if ($getid < 0 || $getid >= count($redirects)) { $getid = 0; }
header ($GLOBALS["SERVER_PROTOCOL"].' 301 Moved permanently');
header ('Location: '.$redirects[$getid]);
header ('Connection: close');
?>