Something like this should work
<%
Dim sDomain
sDomain = Request.ServerVariables("HTTP_REFERER")
If InStr(sDomain, "domain1.com") Then Response.Redirect "domain1.com"
If InStr(sDomain, "domain2.com") Then Response.redirect "domain2.com"
...
...
%>
======
Doug G
======