$display_error="";
switch($HTTP_COOKIE_VARS['ERROR_TYPE'])
{
case 1:
$display_error .= "Sorry, the information you requested does not exist. Please make sure to click the original link, or copy the entire address into the location bar of your browser and try again.";
break;
case 2:
$display_error .= "Sorry, the server encountered an internal error, please try us back later.";
break;
default:
$display_error .= "There is an error in processing your request, please try us back later.";
}
echo $display_error;
exit;
?>