// JAvascript Glossary wordlist


var wordList = new Array();
	
// add your glossaryItems here - don't use special characters or space in the index.
// remember the index is CASE SENSITIVE --- use lowercase!!!!
// example: wordList["internet explorer"] should become wordList["internetexplorer"]

wordList["alias"]="Excerpt from <b>The Complete Doberman Pinscher</b> by Milo G. Denlinger, 1953:<br><br><i>Except by constant references to the stud books in which many of the foundation dogs were later registered it is not even easy to tell who was actually the breeder of notable individuals. There were then no fixed rules regarding names. Dogs frequently bore the kennel name of owner rather than breeder and often changed names with ownership. Some of them consequently appear under three or four different and confusing aliases.</i><br><br>This, of course, makes it very confusing when looking back at the early stud and breed books. We're never quite sure if it's the same dog, or a different dog, as the names can vary. For this reason DobeQuest includes an ALIAS field which allows you to add a dog's second REGISTERED name.";
wordList["causeofdeath"]="<font color=#990033>C - CONFIRMED</font><br>The cause of death is confirmed by medical report or personal observation. <br><br><font color=#990033> S - SUSPECTED</font><br>The cause of death is suspected but cannot be confirmed.<br>";
wordList["dnaprofile"]="The AKC issues DNA Certificates of only two types of certification, <b>individual</b> and <b>parentage</b>.<br> <br>The individual certification lists one DNA profile; the parentage certification lists three profiles: sire, dam, and offspring. <br><br>Source, James W. Edwards, Ph. D., DNA Consultant, American Kennel Club.";
wordList["weight"]="The adult weight is typically reached by a dog at three years of age and by a bitch at two years of age.";
wordList["dateofbirth"]="Use <b>numbers</b>, not letters, to enter the Date of Birth as Month Day Year. [Alphabetic characters will be ignored.]<br><br> Be sure to use all 4 digits (not 2) to enter the Year since '98' could refer to 1898 or to 1998.";
wordList["akcstudbook"]="Use <b>numbers</b>, not letters, to enter the Month and Year of the American Kennel Club Stud Book entry date.";
wordList["ckcstudbook"]="Use <b>numbers</b>, not letters, to enter the Month and Year of the Canadian Kennel Club Stud Book entry date.";
wordList["dateofdeath"]="Use <b>numbers</b>, not letters, to enter the Date of Death as Month Day Year. [Alphabetic characters will be ignored.]<br><br>Be sure to use all 4 digits (not 2) to enter the Year since '98' could refer to 1898 or to 1998.";
wordList["albino"]="This dog and all descendents are <b>White</b> or <b>White Factored</b>. Click for more information";
wordList["conditional"]="This dog and all descendents are <b>Conditionally Registered</b>. Click for more information";
wordList["NAME"]="ENTER DESCRIPTION HERE";


function showArrayValue(arrayIndex) {
	var arr =  wordList;
 for (var key in arr) {
	if(key==arrayIndex){	
		// alert(key + " => " + arr[key]);
		// var openF="drc('"+key+"','"+arr[key]+"'); return true;";
		// var openF="'"+key+"','"+arr[key]+"'";
		var openF=arr[key];
		return openF;
	}	
 }
}

// alert("help");
// Include the div and popup script
document.write('<div id="overDiv" style="position:absolute; visibility:hidden; z-index:1000;"></div>');
//document.write('<script LANGUAGE="JavaScript" SRC="overlib.js" type="text/javascript"></script>');