Andrew Urquhart's Miscellany : Scripts : ASP 301 - Moved Permanently
function doPermanentRedirect(strDestinationUri) {
Response.Clear();
Response.Status = 301;
Response.AddHeader("Location", strDestinationUri);
Response.End();
}
a0000.blogspot.com