link


(Internet Explorer Only) Create a browser window within an existing browser window. Allows you to uniquely provide custom links and navigation. Awesome!

<!-- THREE STEPS TO INSTALL BROWSER:

1. Copy the coding into the HEAD of your HTML document
2. Add the onLoad event handler into the BODY tag
3. Put the last coding into the BODY of your HTML document -->

<!-- STEP ONE: Paste this code into the HEAD of your HTML document -->

<HEAD>

<SCRIPT LANGUAGE="JavaScript">
<!-- Original: Rick Johnson (frj11@ev1.net) -->
<!-- Web Site: http://rickjohnson.tripod.com -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function writeLayer(text) {
document.frames['myFrame'].location.href = text;
document.addrForm.location.value = text;
}
function setLayer(text) {
if (text.indexOf("http://",0) <= 0)
text = "http://" +text;
document.frames['myFrame'].location.href = text;
document.addrForm.location.value = text;
}
function onLoad(text) {
if (text != "Microsoft Internet Explorer") {
alert("netscape not supported");
history.back();
}
return true;
}
// End -->
</script>

</HEAD>

<!-- STEP TWO: Insert the onLoad event handler into your BODY tag -->

<BODY onLoad="onLoad(navigator.appName)">

<!-- STEP THREE: Copy this code into the BODY of your HTML document -->

<iframe src="about:blank" width=100% height=90% id=myFrame></iframe>
<center>
<form name=addrForm>
<input type=button value="New JavaScripts" onClick="writeLayer('http://javascript.internet.com/new')">
<input type=button value="Yahoo" onClick="writeLayer('http://www.yahoo.com')">
<input type=button value="Your Own Link" onClick="writeLayer('about:blank')">
Location:
<input type=text name=location value="Type any URL here then press Go" onFocus="this.value=''" size=35>
<input type=button value="Go" onClick="setLayer(document.addrForm.location.value)">
</form>
</center>

<p><center>
<font face="arial, helvetica" size"-2">Free JavaScripts provided<br>
by <a href="http://javascriptsource.com">The JavaScript Source</a></font>
</center><p>

<!-- Script Size: 1.99 KB -->