I know you are looking for javascript, but since you have no replies... PHP has always been search engine friendly for me...
PHP Code:
<?PHP
header("Location: http://www.yourdomain.com/page.html");
exit;
?>
or, even better and transparent to a search engine:
PHP Code:
<?PHP
include "/path/to/the/other/page.html";
exit;
?>