Highways

$microsoftcheck = ( is_numeric(strpos($_SERVER["HTTP_USER_AGENT"], "IE")) ) ? true : false;
$netscapecheck = ( is_numeric(strpos($_SERVER["HTTP_USER_AGENT"], "Netscape")) ) ? true : false;
$operacheck = ( is_numeric(strpos($_SERVER["HTTP_USER_AGENT"], "Opera")) ) ? true : false;

//if not microsoft IE, the set width of tables so will all be even
if ($microsoftcheck==true && $operacheck==false && $netscapecheck==false) { $tab_wid_ext=""; }else{ $tab_wid_ext="&tabl_width=446"; }
//make sure have headertuck css for bkgnd below
$ext="?c=231&k=9GZYM7&new=y&preSel=54&showprint=button&p=index.php".$tab_wid_ext;
while (list($key,$value) = each ($_REQUEST)) {
$ext.="&".trim($key)."=".trim($value);
}

$url="http://www.edsuite.com/includes/profile.php".$ext;
$url=str_replace(" ","",$url);
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($ch);
curl_close($ch);
echo $output;
?>