| Paste this section within the HEAD tags & change the Alert message as you wish.
<script language="javascript">
<!-- hide from old browsers
// Written & created by Shivaji Basu
// Copyright www.shivbasu.com
// Use this script at your own risk
// To use his script, you MUST leave this disclaimer & credit as it is
function hoax(){
alert("I Have moved out of here.\nYou are being automatically redirected to my new Site.");
}
function callurl(){
parent.location.href="mydoc.html";
}
//--end hide>
</script>
//NOTE:
//(1) Replace the page URL, ie - "mydoc.html" with the URL of your page.
//(2) If you wish to load the New page into a frames page then you must include the
// Frame name between "parent." & "location." like - parent.XXX.location.href=
Paste this part within the OPENING Body tag
<BODY onload="hoax();callurl()" background="" bgcolor="" .....>
// Fill in the Background Image URL, BG color etc as normal
|