<!--Two scripts to installing this script-->
<!--1) Copy below, and save it as a seperate HTML file (ie: remote.htm).-->
<!--This will act as the remote control. Edit the links contained to point to the desired destinations-->
<html>
<head>
<title>Remote Control</title>
<script>
<!--
function remote2(url){
creator.location=url
}
//-->
</script>
</head>
<body bgcolor="ffffff">
<div align="left">
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFF00">
<tr>
<td width="100%"><p align="center"><strong><big><font face="Arial">Remote Control</font></big></strong></td>
</tr>
</table>
</div>
<p align="left"><font face="Arial" size="2"><a
href="javascript:remote2('http://wsabstract.com/javatutors/index.shtml')"><strong>JavaScript Tutorials</strong></a></font></p>
<p align="left"><font face="Arial"><a href="javascript:remote2('http://wsabstract.com/howto/index.shtml')"><strong><small>Web
building tutorials</small></strong></a></font></p>
<p align="left"><a href="javascript:remote2('http://wsabstract.com/cutpastejava.shtml')"><font face="Arial"
size="2"><strong>Free JavaScripts</strong></font></a></p>
<p align="left"><a href="javascript:remote2('http://wsabstract.com/java/index.shtml')"><small><font
face="Arial"><strong>Free Java applets</strong></font></small></a></p>
<p align="left"><font face="Arial" size="2"><a
href="javascript:remote2('http://www.wsabstract.com/frontpage.htm')"><strong>FrontPage Tutorials</strong></a></font></p>
<p align="left"><a
href="javascript:remote2('http://www.java-scripts.net/window/window1.shtml')"><font
face="Arial" size="2"><strong>Back to script</strong></font></a></p>
</body>
</html>
<!--2) Copy below, and paste into page that will launch remote:-->
<script>
<!--
function remote(){
/*Credit: Website Abstraction www.wsabstract.com more JavaScripts here.*/
win2=window.open("remote.htm","","width=150,height=350,scrollbars")
win2.creator=self
}
//-->
</script>
<form>
<input type="button" value="Launch remote!" onClick="remote()">
</form>
|