<!-- Hide from incompatible browsers
	
	//New window for each archived success story
	function sunshine(){
		window.open('archive/sunshine.htm','archive','width=618,height=500,toolbars=no,menubar=no,left=0,top=0,screenX=0,screenY=0,scrollbars=yes')
	}
	
	function triodogs(){
		window.open('archive/rochelle.htm','archive','width=618,height=500,toolbars=no,menubar=no,left=0,top=0,screenX=0,screenY=0,scrollbars=yes')
	}
	
	function timber(){
		window.open('archive/timber.htm','archive','width=618,height=500,toolbars=no,menubar=no,left=0,top=0,screenX=0,screenY=0,scrollbars=yes')
	}
	function able(){
		window.open('archive/able.htm','archive','width=618,height=500,toolbars=no,menubar=no,left=0,top=0,screenX=0,screenY=0,scrollbars=yes')
	}
	
	function boomer(){
		window.open('archive/boomer.htm','archive','width=618,height=500,toolbars=no,menubar=no,left=0,top=0,screenX=0,screenY=0,scrollbars=yes')
	}
	
	function jadah(){
		window.open('archive/jadah.htm','archive','width=618,height=500,toolbars=no,menubar=no,left=0,top=0,screenX=0,screenY=0,scrollbars=yes')
	}
	function keisha(){
		window.open('archive/keisha.htm','archive','width=618,height=500,toolbars=no,menubar=no,left=0,top=0,screenX=0,screenY=0,scrollbars=yes')
	}
	
	//For story names based on contest number. N.B. See testimonial binder for original hardcopy contest submissions.
	//Written by Marilou G. Frias, marilou@mgfrias.com
	//Open new pop-up window for each archived testimonial/story
	//Stories are named as contestx.htm, where x=1 ... 110 and stored in the folder called
	//archive, so the path is archive/contestx.htm
	//viewStory(num) is called in the <a></a> tag of the HTML document, where num is the unique story number
	
		numofStories = 110;
		filename = new Array(numofStories);
		
		// Store story names
		function storeNames(){
			x=0;
			while (x < numofStories){
				x++;
				filename[x]= "contest" + eval(x) + ".htm";
				}
		 }
		 
		 //Pop-up window
		 function viewStory(num){
		 	storeNames();
			pathname = "archive/"+filename[num];
			window.open(pathname,'archive','width=618, height=500, toolbars=no, menubar=no, left=0, top=0, screenX=0, screenY=0, scrollbars=yes')
		 }
		
	//For story names based on y number of new stories. 
	//Open new pop-up window for each archived testimonial/story
	//Stories are named as newy.htm, where y=1 ...n and stored in the folder called
	//archive, so the path is archive/newy.htm, n is some arbitrary number and can be altered in the future if the
	//current n value is less than the current n value.
	//viewNewStory(num) is called in the <a></a> tag of the HTML document, where num is the unique story number
	
		numofNewStories = 200; //Change this n value if this is less than the current number of new stories
		newfilename = new Array(numofNewStories);
		
		// Store story names
		function storeNewNames(){
			y=0;
			while (y < numofNewStories){
				y++;
				newfilename[y]= "new" + eval(y) + ".htm";
				}
		 }
		 
		 //Pop-up window
		 function newStory(num){
		 	storeNewNames();
			newpathname = "archive/"+ newfilename[num];
			window.open(newpathname,'archive','width=618, height=500, toolbars=no, menubar=no, left=0, top=0, screenX=0, screenY=0, scrollbars=yes')
		 }
		
	// Stop hiding from incompatible browsers-->
