Plain text
| Download
- //////// start: SWAPMENU
- var tmpId="everett"
- function sub(ID) {
- if(tmpId) document.getElementById( tmpId ).style.visibility="hidden"
- if(ID) document.getElementById( ID ).style.visibility="visible"
- tmpId=ID
- }
- //////// end: SWAPMENU
- //////// start: PRINT MENU
-
- href=new Array(
- 1, "everett.pl?home", "everett.pl?about", "everett.pl?pictures", "everett.pl?guestbook", "everett.pl?network", "everett.pl?projects", "everett.pl?mailme", "everett.pl?sitemap", "getdata.pl",
- 1, "http://mozilla.org", "http://www.westciv.com.au/style_master/academy/css_tutorial/properties/user_interface.html", "http://www.webreview.com/style/css1/charts/mastergrid.shtml", "http://www.coolhomepages.com/",
- 1, "http://www.nncreations.com/indexs.php", "http://sydlandske.cjb.net", "http://floffern.cjb.net", "http://hem.passagen.se/habsfan", "http://www.hanuman.co.jp/monkeys", "http://www.lostharbour.org",
- 1, "http://www.linux.com", "http://www.slackware.com", "http://freshmeat.net", "http://www.linuxmafia.org",
- 1, "http://www.altavista.com", "http://kvasir.sol.no", "http://www.yahoo.com", "http://ftpsearch.lycos.com", "http://www.mp3sound.com/",
- 1, "http://cjb.net", "http://www.telefonkatalogen.no/", "http://www.dinside.no/data", "http://mother.netcom.no/", "http://www.dictionary.com/", "http://www.hia.no/", "http://www.dnb.no/markets/valuta/valkalk.cfm"
- )
- txt=new Array(
- "everett", "home", "about", "pictures", "guestbook", "projects", "network info?", "contact me", "sitemap", "search",
- "web", "mozilla", "westciv/CSS tutorial", "CSS1 mastergrid", "cool homepages",
- "hp", "Naomi", "Lars Thomas", "|floffy|", "HabsFan", "smokeymonkey2", "lostharbour",
- "linux", "linux.com", "Slackware", "freshmeat", "Linuxmafia",
- "search", "altavista", "Kvasir", "Yahoo", "file search", "Mp3Sound",
- "more", "cjb.net", "telefonkatalogen.no", "dinside/data", "netcom/mother", "Dictionary", "Høgskolen I Agder", "currency converter"
- )
- var f=0
- function print_menu() {
- while(txt[f] && href[f]) {
- if(href[f]==1) {
- if(f==0) document.write( '<div id="' +txt[f] +'">\n')
- else document.write('</div>\n<div id="' +txt[f] +'">\n')
- }
- else {
- if(f<href.length && href[f+1]!=1)
- document.write('<a href="' +href[f] +'">' +txt[f] +"</a>, ")
- else
- document.write('<a href="' +href[f] +'">' +txt[f] +"</a>")
- }
- f++
- }
- document.write("</div>")
- }
- //////// end: PRINT MENU