<HTML><HEAD>
<SCRIPT language="JavaScript">
// Leaving Site Confirm Program
// Version 1.0
// By Mike Calabrese
// http://www.mikecalabrese.com
// 10-04-2000
// This program is available for free on an AS-IS basis. I am not
// responsible for consequential damages, loss of income or whatever
// else that may happen as a result of the use of this program.
<SCRIPT language="JavaScript>"
<!-- hide script from old browsers
var msg = "\nYou are about to leave this site to \n" +
"view this information. Please use your \n" +
"browser Back button to return to \n" +
"this page. Do you wish to continue?";
if (confirm(msg))
location.replace("http://www.target_url.html");
else
location.replace("previous_url.html");
// end hiding contents --> </SCRIPT>
<TITLE>Confirmation</TITLE>
</HEAD>
<BODY bgColor="#ffffff" link="#008000" text="#000000" vLink="#400000">
<P ALIGN="Center">
<SMALL>If you did not see a confirm box,<BR>
please <A HREF="http://www.target_url.html">
Click Here</A>.</SMALL>
</BODY>
</HTML>