<!-- Begin
function selectaplace(form) {
var appname= navigator.appName;
var appversion=parseInt(navigator.appVersion);
if (appname == "Netscape" && appversion >= 3) {
var formindex=form.select1.selectedIndex;
var storage=form.select1.options[formindex].text;
if (form.select1.options[formindex].value != "none") {
var msg=storage+"You are now being transferred to the -> "+storage;
for (var spot=0;spot<msg.length-storage.length;spot++) {
var x=msg.substring(spot,msg.length);
form.select1.options[formindex].text=x;
for(var d=0;d<150;d++) { };
}
window.location=form.select1.options[formindex].value;
form.select1[formindex].text=storage;
} else  {
form.select1[formindex].text="Not a real option!";
for(var d=0;d<1250;d++) { };
form.select1[formindex].text=storage;
   }
}
else {
var formindex=form.select1.selectedIndex;
window.location=form.select1.options[formindex].value;
   }
}
function makeMyMenu() {
document.write ('<form><select name="select1" onChange="selectaplace(this.form)" size=1>');
document.write ('<option value= >Interact');
document.write ('<option value= index.html >Main Index');
document.write ('<option value=survey.html>Our Heart`s Desire');
document.write ('<option value=onlinenews.html>Free Sligo News');
document.write ('<option value=artbeat/index.html>NorthWest Art News');
document.write ('<option value= chat.html >Free Sligo Chat');
document.write ('<option value= screens.html >Sligo ScreenSavers');
document.write ('<option value= nboard.html >Sligo Notice Board');
document.write ('<option value= sligos.html >Sligo Picture Gallery');
document.write ('<option value= addurl.html >Add Your URL');
document.write ('<option value= compw.html >Weekly Competitions');
document.write ('<option value= compm.html >Monthly Competitions');
document.write ('<option value= spot.html >Monthly Spot Prizes');
document.write ('<option value= ecard.html >Send a Sligo E/Card');
document.write ('<option value= puzzle.html >Jigsaw Puzzle');
document.write ('<option value= guestbook.html >The Guestbook');
document.write ('<option value= advertise.html >Advertise at this Site');
document.write ('<option value= helpsw.html >Help the Sligo Web');
document.write ('<option value= contact.html >Contact Author');
document.write ('</select>');
document.write ('</form>');
}
makeMyMenu();

// End -->
