Something like this, maybe?
<?php
if ($color == "FFFFFF") { $ret_color = "WHITE"; }
header("Location: $HTTP_REFERRER?ret_color=$ret_color\n");
?>
Add your own color logic, of course, but that's about all you need. Then ASP should be able to access $ret_color in the query string.
---John Holmes...