<HTML>
<HEAD><TITLE>Tour Starter</TITLE>
<SCRIPT LANGUAGE = "JavaScript">
<!--
function makeTour() {
tour = window.open("","tour","width=400,height=200,left=100,top=100");
// The following line defines the location of
// tour.html, in this case, http://www.domain.com/tour.html
tour.location.href = "http://www.domain.com/tour.html";
if (tour.opener == null) tour.opener = window;
tour.opener.name = "opener";
}
//-->
</SCRIPT>
</HEAD>
<BODY BGCOLOR = "#FFFFFF">
If this is your first time here, why not take the tour?
<P>
<!-- Link to launch tour (can be image or text). -->
<A HREF = "javascript:makeTour()">Start Tour</A>
</BODY>
</HTML>