<!--
	// begin Font Sample Matrix
	
	if(document.images) {
	
	// Sample Tabs
	
		ftdisplayoff = new Image
		ftdisplaypeek = new Image
		ftdisplayon = new Image
		ftalloff = new Image
		ftallpeek = new Image
		ftallon = new Image
		
		ftlightoff = new Image
		ftlightpeek = new Image
		ftlighton = new Image
		ftregularoff = new Image
		ftregularpeek = new Image
		ftregularon = new Image
		ftboldoff = new Image
		ftboldpeek = new Image
		ftboldon = new Image
		ftstenciloff = new Image
		ftstencilpeek = new Image
		ftstencilon = new Image
		ftinlineoff = new Image
		ftinlinepeek = new Image
		ftinlineon = new Image
		
		thesample = new Image
		
		changelinglightdisplay = new Image
		changelinglightchars = new Image
		changelingregdisplay = new Image
		changelingregchars = new Image
		changelingbolddisplay = new Image
		changelingboldchars = new Image
		changelingstencildisplay = new Image
		changelingstencilchars = new Image
		changelinginlinedisplay = new Image
		changelinginlinechars = new Image
		
		ftdisplayoff.src = "images/ftdisplayoff.gif"
		ftdisplaypeek.src = "images/ftdisplaypeek.gif"
		ftdisplayon.src = "images/ftdisplayon.gif"
		ftalloff.src = "images/ftalloff.gif"
		ftallpeek.src = "images/ftallpeek.gif"
		ftallon.src = "images/ftallon.gif"
			
		ftlightoff.src = "images/ftlightoff.gif"
		ftlightpeek.src = "images/ftlightpeek.gif"
		ftlighton.src = "images/ftlighton.gif"
		ftregularoff.src = "images/ftregularoff.gif"
		ftregularpeek.src = "images/ftregularpeek.gif"
		ftregularon.src = "images/ftregularon.gif"
		ftboldoff.src = "images/ftboldoff.gif"
		ftboldpeek.src = "images/ftboldpeek.gif"
		ftboldon.src = "images/ftboldon.gif"
		ftstenciloff.src = "images/ftstenciloff.gif"
		ftstencilpeek.src = "images/ftstencilpeek.gif"
		ftstencilon.src = "images/ftstencilon.gif"
		ftinlineoff.src = "images/ftinlineoff.gif"
		ftinlinepeek.src = "images/ftinlinepeek.gif"
		ftinlineon.src = "images/ftinlineon.gif"
		
		thesample.src = "images/changelingbddisplay.gif"
		
		changelinglightdisplay.src = "images/changelingltdisplay.gif"
		changelinglightchars.src = "images/changelingltchars.gif"
		changelingregdisplay.src = "images/changelingrgdisplay.gif"
		changelingregchars.src = "images/changelingrgchars.gif"
		changelingbolddisplay.src = "images/changelingbddisplay.gif"
		changelingboldchars.src = "images/changelingbdchars.gif"
		changelingstencildisplay.src = "images/changelingstdisplay.gif"
		changelingstencilchars.src = "images/changelingstchars.gif"
		changelinginlinedisplay.src = "images/changelingindisplay.gif"
		changelinginlinechars.src = "images/changelinginchars.gif"
		
	} else {
	
		ftdisplayoff = ""
		ftdisplaypeek = ""
		ftdisplayon = ""
		ftalloff = ""
		ftallpeek = ""
		ftallon = ""
		
		ftlightoff = ""
		ftlightpeek = ""
		ftlighton = ""
		ftregularoff = ""
		ftregularpeek = ""
		ftregularon = ""
		ftboldoff = ""
		ftboldpeek = ""
		ftboldon = ""
		ftstenciloff = ""
		ftstencilpeek = ""
		ftstencilon = ""
		ftinlineoff = ""
		ftinlinepeek = ""
		ftinlineon = ""
	
		thesample = ""
	
		changelinglightdisplay = ""
		changelinglightchars = ""
		changelingregdisplay = ""
		changelingregchars = ""
		changelingbolddisplay = ""
		changelingboldchars = ""
		changelingstencildisplay = ""
		changelingstencilchars = ""
		changelinginlinedisplay = ""
		changelinginlinechars = ""
		
	}
	
	var currentmode = "display"
	var currentweight = "bold"
	
	function updatesample(mode, weight) {
		document.thesample.src = eval('changeling' + weight + mode + '.src');
		currentmode = mode;
		currentweight = weight;
		}
		
	// end Font Sample Matrix
	
-->