/* Simple Example */
<script language="javascript">
<!--
function f_switch()
{
var loc_id = 0 ;
var newpage = "" ;
newpage = "http://www.netscape.com" ;
parent.location=newpage;
}
// -->
</script>
/* More Complex Example */
<html>
<head>
<script language="javascript">
<!--
function f_redirect(){
var url = document.location ; //capture the contents of the browser location
var temp = new String(url) ; //convert the browser location to a string
var url2 = temp.toLowerCase(); //convert the browser location to lower case
//search the browser location
if (url2.indexOf("carsdirect.com") >= 0) { // go to carsdirect
top.location='carsdirect/index.html';
}
else {
top.location='index.html';
}
}
// -->
</script>
<title></title>
</head>
<body onload="f_redirect()" $formtype=this>
<h2>Loading</h2>
Please wait ...
</body>
</html>
|
|