How to open new page in frame without being framed by old page frame
When I try this using self.setTimeout, the new page opens with navigation frame inside the navigation frame for the old page, which will not do.
How do I make the old page navigation frame close and open the new page with its own navigation frame?
Here is the code I'm using:
<head>
<script language="javascript">
<!-- Set timeOut to the time to wait before redirecting -->
<!-- Set newSite to the page you want to be redirected to -->
<!--
timeOut = "2000";
newSite = "http://weblibrary.vh.eng.vzwcorp.com/weblibrary/home.do?dept=NSS";
function timer() { self.setTimeout("self.location.href = newSite;",timeOut) }
//-->
</script>
</head>
<body onload="timer()">
Thanks!



