<!-- Begin
function selectaplace(form1) {
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= >Directory...');
document.write ('<option value=index.html>Main Index');
document.write ('<option value=about.html>About Sligo Web');
document.write ('<option value=accommodation.html>Accommodation');
document.write ('<option value=arts.html>Arts & Literature');
document.write ('<option value=business.html>Business');
document.write ('<option value=community.html>Communities');
document.write ('<option value=directory.html>Directory');
document.write ('<option value=entertainment.html>Entertainment');
document.write ('<option value=education.html>Education');
document.write ('<option value=facts.html>Facts');
document.write ('<option value=geneology.html>Geneology');
document.write ('<option value=Government.html>Government');
document.write ('<option value=Medical.html>Medical');
document.write ('<option value=news.html>News & Media');
document.write ('<option value=people.html>People');
document.write ('<option value=religion.html>Religion');
document.write ('<option value=sport.html>Sport');
document.write ('<option value=tourism.html>Tourism');
document.write ('</select>');
document.write ('</form>');
}
makeMyMenu();

// End -->
