JavaScript Link Info Text Box

Example:
html-tips
Fonts
Perl Scripts
Software
Create-A-Page
Forum

Copy and Paste:
<!-- This goes in the Head section of your document -->
<SCRIPT LANGUAGE="JavaScript">
<!-- Data~Creek Design!! http://webgear.datacreek.net/javascript/index.html -->
<!-- Begin
function linkDisplay(selection) {
if (selection=="1") {
document.form.info.value="html tips and resources. Windows 95/98 tips.!";
document.form.go.value="http://webgear.datacreek.net/html.html";
}
else if(selection=="2") {
document.form.info.value="Several Interesting Fonts. See '\em - Download \'em!";
document.form.go.value="http://webgear.datacreek.net/fonts.html";
}
else if(selection=="3") {
document.form.info.value="Perl Scripts for cgi.";
document.form.go.value="http://webgear.datacreek.net/cgi-java.html";
}
else if(selection=="4") {
document.form.info.value="The best free/shareware we know of. Read descriptions and download. Some essential stuff here.";
document.form.go.value="http://webgear.datacreek.net/soft.html";
}
else if(selection=="5") {
document.form.info.value="A simple free web page.";
document.form.go.value="http://freefeast.com/userpages";
}
else if(selection=="6") {
document.form.info.value="This is our forum. You can post questions, answers and create your own topic.";
document.form.go.value="http://datacreek.com/discus/board.html";
}
else {
document.form.info.value = "DataCreek Portal.";
document.form.go.value="http://datacreek.com/";
   }
}
function moreInfo() {
var page=document.form.go.value;
window.location=page;
}
// End -->
</script>
<!-- End of Head Section -->

<!-- The Form should go in the body of your document -->
<form name=form>
<table border=0 width=400>
<tr>
<td align=center><a href="javascript:linkDisplay(1);">html-tips</a><br></td>
<td align=center><a href="javascript:linkDisplay(2);">Fonts</a><br></td>
<td align=center><a href="javascript:linkDisplay(3);">Perl Scripts</a><br></td>
</tr>
<tr>
<td align=center><a href="javascript:linkDisplay(4);">Software</a><br></td>
<td align=center><a href="javascript:linkDisplay(5);">Create-A-Page</a><br></td>
<td align=center><a href="javascript:linkDisplay(6);">Forum</a><br></td>
</tr>
<tr>
<td colspan=3 align=center>
<textarea name=info rows=4 cols=40 wrap=virtual>Click a topic above for more info!</textarea><br>
<input type=button name=button value="Go There!" onClick="moreInfo()">
<input type=hidden name=go value="">
</td></tr>
</table>
</form>




html~Creek