Free Web Hosting by Netfirms
Web Hosting by Netfirms | Free Domain Names by Netfirms

JavaScript location code


<head>

<script language="javascript">

function redirect(){

/*
Refer to the window so it's location property can be accessed
then change the value of the property to a new file
("location_new_page.htm").
As soon as the "location" property is set the web browser
will immediately download that file (If it can find it)
and load it into the browser.
*/
window.location.href = "location_new_page.htm"
}
</script>
</head>

<!--Make the "setTimeout" method call the "redirect" function after 4 seconds -->
<body bgcolor="#FFFFFF" onLoad=" setTimeout('redirect()',4000) "></body>

The Page you are looking for is no longer here I will redirect you to the new page in 4 seconds


Close