<HTML>
<HEAD>
<TITLE>Remote Launching Page</TITLE>
<SCRIPT LANGUAGE = "JavaScript">
<!--
//Script from http://datacreek.com
function makeRemote() {
// Define the size of your remote window in pixels with "width" and "height."
remote = window.open("","remotewin","width=350,height=400");
// Put the full url of your remote document where you see "URL".
remote.location.href = "URL";
if (remote.opener == null) remote.opener = window;
remote.opener.name = "opener";
}
//-->
</SCRIPT>
</HEAD>
<BODY>
Remote Launching Page
<BR>
<!-- This text/image link launches the remote window and document. -->
<A HREF = "javascript:makeRemote()">Open Remote</A>
</BODY>
</html>
html~Creek