<!-- klinlist.js -->
<!-- begin hiding
// Put this code in the HEAD of the calling page
// There are two array objects: lhdr[] contains section headers:
//      1. Name of the header
//      2. URL record before which to place the next header
// udb() contains URL data to build outlines:
//    1. String to display in outline entry (including <FONT> or style tags).
//    2. URL of link for outline entry; Use empty string ("") for no link
//    3. String for status line during onMouseOver (apostrophes require \\')
//    4. A gif to display, if desired
//

// This part for compatibility with Nav2 and IE3
function makeArray(n) {
	this.length = n
	return this
}

var Copyr = "1997-2006"

var klhdr = new makeArray(1)
var kudb = new makeArray(1)
var nextKID = 1

klhdr[1] = new klhdrRecord("Star Trek (especially Klingon)",0)
kudb[nextKID] = new kudbRecord("Klingon Language Institute",
  "http://www.kli.org",
  " ","")
nextKID ++

kudb[nextKID] = new kudbRecord("<EM>qIb HeHDaq</EM>",          
  "http://www.geocities.com/Athens/8853/",
  "The \\'other\\' Klingon language study group","")
nextKID ++

kudb[nextKID] = new kudbRecord("North Star Klingon Outpost",   
  "http://members.aol.com/JPKlingon/",
  " ","")
nextKID ++

kudb[nextKID] = new kudbRecord("Qov bo logh",
 "http://bologh.blogspot.com",
"A blog entirely in Klingon!","")
nextKID++

kudb[nextKID] = new kudbRecord("Holtej\'s Homepage",
 "http://dspeers.cjb.net/klingon/",
"Home of the Klingon Language Institute FAQ","")
nextKID++

kudb[nextKID] = new kudbRecord("Klingonska Akademien",
 "http://klingonska.org",
"From Sweden","")
nextKID++

kudb[nextKID] = new kudbRecord("Itabashi Klingon Museum",
 "http://www.asahi-net.or.jp/~VZ4S-KUBC/tlhindex.html",
"From Japan","")
nextKID++

kudb[nextKID] = new kudbRecord("Khemorex Klinzhai",
 "http://www.khemorex-klinzhai.de/e/Hol/",
"From Germany","")
nextKID++

kudb[nextKID] = new kudbRecord("K\'Tesh\'s Klingon Recipe Pages",   
  "http://www.klingonfood.com",
  " ","")
nextKID ++

kudb[nextKID] = new kudbRecord("Hidden Frontier",   
  "http://www.hiddenfrontier.org",
  "A live-action fan film series from the DS9 era","")
nextKID ++

kudb[nextKID] = new kudbRecord("New Voyages",   
  "http://newvoyages.com",
  "Fan film: the remaining 2 years of the TOS Enterprise mission","")
nextKID ++

kudb[nextKID] = new kudbRecord("Starship Exeter",   
  "http://homepage.mac.com/starshipexeter/",
  "Fan film set in the TOS era","")
nextKID ++

kudb[nextKID] = new kudbRecord("Klin Zha Homepage",   
  "http://www.tasigh.org/takzh/",
  "Klingon chess","")
nextKID ++

kudb[nextKID] = new kudbRecord("Sev Trek",   
  "http://www.sev.com.au/",
  "Home of Sev Trek, the cartoon","")
nextKID ++


kudb[nextKID] = new kudbRecord("Luca Sambucci\'s Mother of All Star Trek Sites",   
  "http://www.stwww.com/",
  " ","")
nextKID ++

kudb[nextKID] = new kudbRecord("Trek Today",
 "http://www.trektoday.com",
"A good source for news and views on the world of Star Trek","")
nextKID++

klhdr[1].nextTitle=nextKID
var noOfKURLs = nextKID-1

// object constructor for each database 
// extraStuff field added, TGD
function kudbRecord(display,URL,statusMsg,extraStuff){
     this.display = display // text to display
     this.URL = URL         // link tied to text; if empty string, item appears as straight text
     this.statusMsg = statusMsg  // descriptive text for status bar
     this.extraStuff = extraStuff // anything to display after the link 
     return this
}

function klhdrRecord(hTitle,nextTitle) {
        this.hTitle = hTitle  // title of this section
        this.nextTitle = nextTitle // where to put next title
        return this
}


