Ah!
About javascript redirects, I've usually seen/used normal redirection as this:
<html>
<body>
<p align="center">The page you are looking for is not here. Try:</p>
<p align="center">
<a href= "http://www.domain.com/resources/htmljavascript.htm">
www.domain.com/resources/htmljavascript.htm</a></p>
<p align="center">If you are not redirected automatically within a few
seconds then please click on the link above.</p>
<script language="JavaScript"><!--
setTimeout('Redirect()',4000);
function Redirect()
{
location.href = '../htmljavascript.htm';
}
// --></script>
</body>
</html>
..but I'm unsure how an unknown url can be automatically redirected through javascript or meta tags.