/**************************************************************************************File name: daveSyoung.jsDescription: This file has all the functions for what happens within DAVESYOUNG.COMAuthor: Dave Young (Dave S Young) **************************************************************************************/// LOCATION::  These variables keep track of where the user is Locatedvar currentChannel = ""var currentProject = ""var toData = ""							// orients the page towards the Data directory var lastUpdated = "october 10, 2005"// NAVIGATION HTML ALTERNATIVESvar navDisplay =""// SELECTED QUOTEvar selectedQuote = ""// BREAD CRUMBSvar breadCrumbs =""// HTML FOR DISPLAYED IMAGEvar displayContents = ""var loadedRoll = ""// SET THE BACK< CURRENT, PREVIOUS, and PDF valuesvar goBack = ""var viewImage = ""var goForward = ""		//************************ THE SECRET ATTIC OF QUIET QUOTES *******************************// Question: Did you used to eat all the chocoalte in your advent calendar on the first day?  /************************************************************************************Function: insertQuoteDescription: This function inserts the front page quote.************************************************************************************/function insertQuote() {		// SELECTS A RANDOM WHOLE NUMBER 	var ran_number=Math.round(Math.random()*16);		// SELECTS THE QUOTE	if (ran_number==1) {		selectedQuote = "<p class=\"quote\"><br><br><br><br>&nbsp;&nbsp;&quot; If design can be used to sell jeans and perfume, then I will <br>&nbsp;&nbsp;&nbsp; use it to fight for democracy and against injustice. &quot;</p><p class=\"quoteD\">- Chaz Maviyane-Davies</p>"	}	else if (ran_number==2) {		selectedQuote = "<p class=\"quote\"><br><br><br><br>&nbsp;&nbsp;&quot;... a wealth of information creates a poverty of attention,<br>&nbsp;&nbsp;&nbsp;and a need to allocate that attention efficiently <strike>among the</strike><br>&nbsp;&nbsp;&nbsp;<strike>overabundance of information sources that might consume it</strike>.&quot;</p><p class=\"quoteD\">- Herbert Simon</p>"	}	else if (ran_number==3) {		selectedQuote = "<p class=\"quote\"><br><br><br><br>&nbsp;&nbsp;&quot; Everyone designs who devises courses of action aimed<br>&nbsp;&nbsp;&nbsp; at changing existing situations into preferred ones.&quot;</p><p class=\"quoteD\">- Herbert Simon</p>"	}	else if (ran_number==4) {		selectedQuote = "<p class=\"quote\"><br><br><br><br>&nbsp;&nbsp;&quot; If you want to push design into new areas, you have to work<br>&nbsp;&nbsp;&nbsp; closely across the boundaries of people's trades and professions. <br>&nbsp;&nbsp;&nbsp; If you know the questions to ask, you can pull out the expertise.&quot;</p><p class=\"quoteD\">- Jeanne Gang</p>" 	}	else if (ran_number==5) {		selectedQuote = "<p class=\"quote\"><br><br><br><br>&nbsp;&nbsp;&quot; A [designer] is best when people barely know he exists, <br>&nbsp;&nbsp;&nbsp; when his work is done, his aim fulfilled, they will say:<br>&nbsp;&nbsp;&nbsp; we did it ourselves.&quot;</p><p class=\"quoteD\">- Lao Tzu</p>"	}	else if (ran_number==6) {		selectedQuote = "<p class=\"quote\"><br><br><br><br>&nbsp;&nbsp;&quot;... describe your sorrows and desires, passing thoughts and<br>&nbsp;&nbsp;&nbsp;the belief in some sort of beauty &#8211; describe all these with loving,<br>&nbsp;&nbsp;&nbsp;quiet, humble sincerity, and use to express yourself, the things<br>&nbsp;&nbsp;&nbsp;in your environment, the images from your dreams,<br>&nbsp;&nbsp;&nbsp;and the objects of your memory.&quot;</p><p class=\"quoteD\">- Rainer Maria Rilke</p>"	}	else if (ran_number==7) {		selectedQuote = "<p class=\"quote\"><br><br><br><br>&nbsp;&nbsp;&quot; The commonality between science and art is in trying to see <br>&nbsp;&nbsp;&nbsp; profoundly &#8211; to develop strategies of seeing and showing.&quot;</p><p class=\"quoteD\">- Edward Tufte</p>"	}	else if (ran_number==8) {		selectedQuote = "<p class=\"quote\"><br><br><br><br>&nbsp;&nbsp;&quot; The designer has a dream that goes beyond what exists, <br>&nbsp;&nbsp;&nbsp; rather than fixing what exists... the designer wants to create <br>&nbsp;&nbsp;&nbsp; a solution that fits in a deeper situational or social sense.&quot;</p><p class=\"quoteD\">- David Kelley</p>"	}	else if (ran_number==9) {		selectedQuote = "<BR><center><table width=\"425\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><center><img src=\"Data/theory.gif\" border=\"0\" valign=\"top\"></center></td></tr></table></center>"	}	else if (ran_number==10) {		selectedQuote = "<p class=\"quote\"><br><br><br><br>&nbsp;&nbsp;&quot; Good design... maximizes the life goals of the people <br>&nbsp;&nbsp;&nbsp; in [a certain subset of] a given culture.&quot;</p><p class=\"quoteD\">- Mihaly Csikszentmihalyi</p>"	}	else if (ran_number==11) {		selectedQuote = "<p class=\"quote\"><br><br><br><br>&nbsp;&nbsp;&quot; To realize that you do not understand is a virtue; <br>&nbsp;&nbsp;&nbsp; Not to realize that you do not understand is a defect.&quot;</p><p class=\"quoteD\">- Lao Tzu</p>"	}	else if (ran_number==12) {		selectedQuote = "<p class=\"quote\"><br><br><br><br>&nbsp;&nbsp;&quot; Good design should reflect a sense of human history &#8211; <br>&nbsp;&nbsp;&nbsp; some aspect of where we’ve come from.&quot;</p><p class=\"quoteD\">- Harmutt Esslinger</p>"	}	else if (ran_number==13) {		selectedQuote = "<p class=\"quote\"><br><br><br><br>&nbsp;&nbsp;&quot; Design is in everything we make, but it’s also between <br>&nbsp;&nbsp;&nbsp; those things. It's a mix of craft, science, storytelling, <br>&nbsp;&nbsp;&nbsp; propaganda, and philosophy.&quot;</p><p class=\"quoteD\">- Erik Adigard</p>"	}		else if (ran_number==14) {		selectedQuote = "<p class=\"quote\"><br><br><br><br>&nbsp;&nbsp;&quot; We are searching for some kind of harmony between two <br>&nbsp;&nbsp;&nbsp; intangibles: a form which we have not yet designed and <br>&nbsp;&nbsp;&nbsp; a context which we cannot properly describe.&quot;</p><p class=\"quoteD\">- Christopher Alexander</p>"	}		else if (ran_number==15) {		selectedQuote = "<p class=\"quote\"><br><br><br><br>&nbsp;&nbsp;&quot; Don’t make something unless it is both necessary <br>&nbsp;&nbsp;&nbsp; and useful; but if it is both necessary and useful, <br>&nbsp;&nbsp;&nbsp; don't hesitate to make it beautiful.&quot;</p><p class=\"quoteD\">- Shaker Philosophy</p>"	}		else {  // this catches first and last half margin (0.5)		selectedQuote = "<center><table width=\"425\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><center><BR><img src=\"Data/designosaur.gif\" width=\"420\" height=\"270\" border=\"0\" valign=\"top\"></center></td></tr></table></center>"	}		// INSERT THE Selected Quote	document.getElementById("display").innerHTML=selectedQuote	}/************************************************************************************Function: buildNavDescription: This function inserts the HTML for Navigation************************************************************************************/function buildNav() { 		//sets the 'navDisplay' string to the right locations HTML	if (currentChannel=="Home") {		navDisplay = "<table width=\"100%\" height=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\" height=\"60\"><tr height=\"43\"><td height=\"43\"></td><td width=\"141\" rowspan=\"2\" height=\"41\"><a href=\"index.html\"><img src=\"" + toData + "Heading/bioCorner.jpg\" alt=\"Dave S. Young, www.davesyoung.com\" width=\"141\" height=\"41\" align=\"right\" border=\"0\"></a></td></tr><tr height=\"17\"><td width=\"480\" height=\"17\"><a href=\"" + toData + "Explore/index.html\"><img src=\"" + toData + "Heading/explore.gif\" alt=\"explore\" width=\"70\" height=\"17\" border=\"0\"></a><a href=\"" + toData + "Visualize/index.html\"><img src=\"" + toData + "Heading/visualize.gif\" alt=\"visualize\" width=\"73\" height=\"17\" border=\"0\"></a><a href=\"" + toData + "Inform/index.html\"><img src=\"" + toData + "Heading/inform.gif\" alt=\"inform\" width=\"62\" height=\"17\" border=\"0\"></a><a href=\"" + toData + "Interact/index.html\"><img src=\"" + toData + "Heading/interact.gif\" alt=\"interact\" width=\"69\" height=\"17\" border=\"0\"></a><a href=\"DaveYoung-Resume.pdf\" target=resume><img src=\"" + toData + "Heading/resume.gif\" alt=\"resume\" width=\"60\" height=\"17\" border=\"0\"></a></td></tr></table>"	}	else if (currentChannel=="Explore") {		navDisplay = "<table width=\"100%\" height=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\" height=\"100%\"><tr height=\"24\"><td height=\"24\"></td><td width=\"141\" rowspan=\"2\" height=\"41\"><a href=\"../" + toData + "index.html\"><img src=\"" + toData + "Heading/bioCorner.jpg\" alt=\"Dave S. Young, www.davesyoung.com\" width=\"141\" height=\"41\" align=\"right\" border=\"0\"></a></td></tr><tr height=\"17\"><td width=\"480\" height=\"17\"><a href=\"" + toData + "Explore/index.html\" ><img src=\"" + toData + "Heading/Explore/uexplore.gif\" alt=\"explore\" width=\"70\" height=\"17\" border=\"0\"></a><a href=\"" + toData + "Visualize/index.html\" ><img src=\"" + toData + "Heading/visualize.gif\" alt=\"visualize\" width=\"73\" height=\"17\" border=\"0\"></a><a href=\"" + toData + "Inform/index.html\" ><img src=\"" + toData + "Heading/inform.gif\" alt=\"inform\" width=\"62\" height=\"17\" border=\"0\"></a><a href=\"" + toData + "Interact/index.html\"><img src=\"" + toData + "Heading/interact.gif\" alt=\"interact\" width=\"69\" height=\"17\" border=\"0\"></a><a href=\"../" + toData + "DaveYoung-Resume.pdf\" target=resume ><img src=\"" + toData + "Heading/resume.gif\" alt=\"resume\" width=\"60\" height=\"17\" border=\"0\"></a></td></tr><tr><td colspan=2 bgcolor=\"#cccccc\"><a href=\"" + toData + "Explore/Identity/index.html\" ><img src=\"" + toData + "Heading/Explore/1.gif\" alt=\"identity\" width=\"66\" height=\"17\" border=\"0\"></a><a href=\"" + toData + "Explore/Sculpture/index.html\"><img src=\"" + toData + "Heading/Explore/2.gif\" alt=\"sculpture\" width=\"65\" height=\"17\" border=\"0\"></a><a href=\"" + toData + "Explore/Photography/index.html\" ><img src=\"" + toData + "Heading/Explore/3.gif\" alt=\"photography\" width=\"82\" height=\"17\" border=\"0\"></a><a href=\"" + toData + "Explore/Glassblowing/index.html\" ><img src=\"" + toData + "Heading/Explore/4.gif\" alt=\"glassblowing\" width=\"85\" height=\"17\" border=\"0\"></td></tr></table>"	}	else if (currentChannel=="Visualize") {		navDisplay = "<table width=\"100%\" height=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\" height=\"100%\"><tr height=\"24\"><td height=\"24\"></td><td width=\"141\" rowspan=\"2\" height=\"41\"><a href=\"../" + toData + "index.html\"><img src=\"" + toData + "Heading/bioCorner.jpg\" alt=\"Dave S. Young, www.davesyoung.com\" width=\"141\" height=\"41\" align=\"right\" border=\"0\"></a></td></tr><tr height=\"17\"><td width=\"480\" height=\"17\"><a href=\"" + toData + "Explore/index.html\"><img src=\"" + toData + "Heading/Visualize/aexplore.gif\" alt=\"explore\" width=\"70\" height=\"17\" border=\"0\"></a><a href=\"" + toData + "Visualize/index.html\"><img src=\"" + toData + "Heading/Visualize/uvisualize.gif\" alt=\"visualize\" width=\"73\" height=\"17\" border=\"0\"></a><a href=\"" + toData + "Inform/index.html\"><img src=\"" + toData + "Heading/inform.gif\" alt=\"inform\" width=\"62\" height=\"17\" border=\"0\"></a><a href=\"" + toData + "Interact/index.html\"><img src=\"" + toData + "Heading/interact.gif\" alt=\"interact\" width=\"69\" height=\"17\" border=\"0\"></a><a href=\"../" + toData + "DaveYoung-Resume.pdf\" target=resume><img src=\"" + toData + "Heading/resume.gif\" alt=\"resume\" width=\"60\" height=\"17\" border=\"0\"></a></td></tr><tr><td colspan=2 bgcolor=\"#cccccc\"><a href=\"" + toData + "Visualize/Sound/index.html\"><img src=\"" + toData + "Heading/Visualize/1.gif\" alt=\"sound\" width=\"57\" height=\"17\" border=\"0\"></a><a href=\"" + toData + "Visualize/Place/index.html\"><img src=\"" + toData + "Heading/Visualize/2.gif\" alt=\"place\" width=\"46\" height=\"17\" border=\"0\"></a><a href=\"" + toData + "Visualize/Context/index.html\"><img src=\"" + toData + "Heading/Visualize/3.gif\" alt=\"context\" width=\"57\" height=\"17\" border=\"0\"></a><a href=\"" + toData + "Visualize/Haiku/index.html\"><img src=\"" + toData + "Heading/Visualize/4.gif\" alt=\"haiku\" width=\"46\" height=\"17\" border=\"0\"></a></td></tr></table>"	}	else if (currentChannel=="Inform") {		navDisplay = "<table width=\"100%\" height=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\" height=\"100%\"><tr height=\"24\"><td height=\"24\"></td><td width=\"141\" rowspan=\"2\" height=\"41\"><a href=\"../" + toData + "index.html\"><img src=\"" + toData + "Heading/bioCorner.jpg\" alt=\"Dave S. Young, www.davesyoung.com\" width=\"141\" height=\"41\" align=\"right\" border=\"0\"></a></td></tr><tr height=\"17\"><td width=\"480\" height=\"17\"><a href=\"" + toData + "Explore/index.html\"><img src=\"" + toData + "Heading/explore.gif\" alt=\"explore\" width=\"70\" height=\"17\" border=\"0\"></a><a href=\"" + toData + "Visualize/index.html\"><img src=\"" + toData + "Heading/Inform/avisualize.gif\" alt=\"visualize\" width=\"73\" height=\"17\" border=\"0\"></a><a href=\"" + toData + "Inform/index.html\"><img src=\"" + toData + "Heading/Inform/uinform.gif\" alt=\"inform\" width=\"62\" height=\"17\" border=\"0\"></a><a href=\"" + toData + "Interact/index.html\"><img src=\"" + toData + "Heading/interact.gif\" alt=\"interact\" width=\"69\" height=\"17\" border=\"0\"></a><a href=\"../" + toData + "DaveYoung-Resume.pdf\" target=resume><img src=\"" + toData + "Heading/resume.gif\" alt=\"resume\" width=\"60\" height=\"17\" border=\"0\"></a></td></tr><tr><td colspan=2 bgcolor=\"#cccccc\"><a href=\"" + toData + "Inform/Poster/index.html\"><img src=\"" + toData + "Heading/Inform/1.gif\" alt=\"poster\" width=\"59\" height=\"17\" border=\"0\"></a><a href=\"" + toData + "Inform/Publication/index.html\"><img src=\"" + toData + "Heading/Inform/2.gif\" alt=\"publication\" width=\"76\" height=\"17\" border=\"0\"></a><a href=\"" + toData + "Inform/Schedule/index.html\"><img src=\"" + toData + "Heading/Inform/3.gif\" alt=\"schedule\" width=\"63\" height=\"17\" border=\"0\"></a></td></tr></table>"	}	else if (currentChannel=="Interact") {		navDisplay = "<table width=\"100%\" height=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\" height=\"100%\"><tr height=\"24\"><td height=\"24\"></td><td width=\"141\" rowspan=\"2\" height=\"41\"><a href=\"../" + toData + "index.html\"><img src=\"" + toData + "Heading/bioCorner.jpg\" alt=\"Dave S. Young, www.davesyoung.com\" width=\"141\" height=\"41\" align=\"right\" border=\"0\"></a></td></tr><tr height=\"17\"><td width=\"480\" height=\"17\"><a href=\"" + toData + "Explore/index.html\"><img src=\"" + toData + "Heading/explore.gif\" alt=\"explore\" width=\"70\" height=\"17\" border=\"0\"></a><a href=\"" + toData + "Visualize/index.html\"><img src=\"" + toData + "Heading/visualize.gif\" alt=\"visualize\" width=\"73\" height=\"17\" border=\"0\"></a><a href=\"" + toData + "Inform/index.html\"><img src=\"" + toData + "Heading/Interact/ainform.gif\" alt=\"inform\" width=\"62\" height=\"17\" border=\"0\"></a><a href=\"" + toData + "Interact/index.html\"><img src=\"" + toData + "Heading/Interact/uinteract.gif\" alt=\"interact\" width=\"69\" height=\"17\" border=\"0\"></a><a href=\"../" + toData + "DaveYoung-Resume.pdf\" target=resume><img src=\"" + toData + "Heading/resume.gif\" alt=\"resume\" width=\"60\" height=\"17\" border=\"0\"></a></td></tr><tr><td colspan=2 bgcolor=\"#cccccc\"><a href=\"" + toData + "Interact/Game/index.html\"><img src=\"" + toData + "Heading/Interact/1.gif\" alt=\"game\" width=\"54\" height=\"17\" border=\"0\"></a><a href=\"" + toData + "Interact/Interface/index.html\"><img src=\"" + toData + "Heading/Interact/2.gif\" alt=\"interface\" width=\"64\" height=\"17\" border=\"0\"></a><a href=\"" + toData + "Interact/Robotics/index.html\"><img src=\"" + toData + "Heading/Interact/3.gif\" alt=\"robotics\" width=\"60\" height=\"17\" border=\"0\"></a><a href=\"" + toData + "Interact/Experience/index.html\"><img src=\"" + toData + "Heading/Interact/4.gif\" alt=\"experience\" width=\"73\" height=\"17\" border=\"0\"></a><a href=\"" + toData + "Interact/Product/index.html\"><img src=\"" + toData + "Heading/Interact/5.gif\" alt=\"product\" width=\"58\" height=\"17\" border=\"0\"></a><a href=\"" + toData + "Interact/Tangibility/index.html\"><img src=\"" + toData + "Heading/Interact/6.gif\" alt=\"product\" width=\"71\" height=\"17\" border=\"0\"></a></td></tr></table>"	}	else {	}		document.getElementById('navigation').innerHTML=navDisplay	}/************************************************************************************Function: sideLinks()Description: This function inserts the side breadcrumbs.************************************************************************************/function sideLinks() {		if (currentProject=="none"){	//breadCrumbs ="<div class=\"sideName\">&nbsp;&nbsp;&nbsp;&nbsp;&lt;&nbsp;<a href=\"index.html\" class=\"sideName\">" + currentChannel + "</a><BR></div>"	breadCrumbs=""	}	else {	breadCrumbs ="<div class=\"sideName\">&nbsp;&nbsp;&nbsp;&nbsp;&lt;&nbsp;<a href=\"index.html\" class=\"sideName\">" + currentProject + "</a><BR></div>"	}	// INSERT THE Selected Quote	document.getElementById("color").innerHTML= breadCrumbs}/************************************************************************************Function: insertDateDescription: This function inserts the HTML for the Copyright.************************************************************************************/function insertDate() {	// INSERT THE COPYRIGHT HTML TABLE	document.getElementById("date").innerHTML="<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td colspan=\"2\"><span class=\"copyright\"><font face=\"Arial, Helvetica, sans-serif\"><img src=\"" + toData + "bottomLine.gif\" width=\"630\" height=\"3\"></font></span></td></tr><tr><td width=\"397\"><span class=\"footer\"><font face=\"Arial, Helvetica, sans-serif\">&nbsp;this portfolio was last updated on " + lastUpdated + "</font></span></td><td width=\"236\"><div align=\"right\"><span class=\"footer\"><font face=\"Arial, Helvetica, sans-serif\">davefromdesign(a)gmail.com</font></span></div></td></tr></table>"}/************************************************************************************Function: insertJunkDescription: This function inserts the HTML for the Copyright.************************************************************************************/function insertJunk() {	// INSERT THE COPYRIGHT HTML TABLE	document.getElementById("junk").innerHTML="<p class=\"white\">Dave Young. Dave S Young. David S. Young. Dave From Design. Dave From Vermont. Yum. Design Portfolio. Communication Design. Web Design. Cooking. Visual Interface Design. Information Architecture. pachwork quilt. p@chwork quilt. Graphical User Interface. Coyote. Experience Design. Friend. User Experience Design. Human Factors. Human Computer Interaction. Interaction Design. Interface Design. Carnegie Mellon University. Carrots. Cooking. Techsploitation. Tech-sploitation. Anti-Techsploitation. Thetford, Vermont. Thetford Academy. Youth for Understanding. Australia. Jessica R. Cy. Farm and Wilderness. Copyright Dave Young. David Sacret Young.</p>"	}/************************************************************************************Function: changeDisplay()Description: This function inserts the front page quote.************************************************************************************/function changeDisplay(numPics, imageFile) {	// FOR SIMPLE IMAGE FILES	if (numPics=="1") {		// INSERT the Larger Version of Image		displayContents = "<center><BR><table width=\"425\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><center><img src=\"" + imageFile + "\" border=\"0\" valign=\"top\"></center></td></tr></table></center>"	}		else if (numPics=="1b") {		// INSERT the Larger Version of Image w/o <BR>		displayContents = "<center><img src=\"" + imageFile + "\" border=\"0\" valign=\"top\"></center>"	}		// FOR COMPLEX 01 ::  BUSINESS CARDS 	else if (numPics=="complex01")  {		// creates a large matrix of all 12 business cards		displayContents = "<center><BR><table width=\"310\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td width=\"105\"><a href=\"#\"><img src=\"31a.gif\" onclick=\"changeDisplay('complex01b', '3_1a.gif')\" width=\"105\" height=\"60\" border=\"0\"></a></td><td width=\"103\"><a href=\"#\"><img src=\"32a.gif\" onclick=\"changeDisplay('complex01b', '3_2a.gif')\" width=\"103\" height=\"60\" border=\"0\"></a></td><td width=\"102\"><a href=\"#\"><img src=\"33a.gif\" onclick=\"changeDisplay('complex01b', '3_3a.gif')\" width=\"102\" height=\"60\" border=\"0\"></a></td></tr><tr><td><a href=\"#\"><img src=\"31b.gif\" onclick=\"changeDisplay('complex01b', '3_1b.gif')\" width=\"105\" height=\"58\" border=\"0\"></a></td><td><a href=\"#\"><img src=\"32b.gif\" onclick=\"changeDisplay('complex01b', '3_2b.gif')\" width=\"103\" height=\"58\" border=\"0\"></a></td><td><a href=\"#\"><img src=\"33b.gif\" onclick=\"changeDisplay('complex01b', '3_3b.gif')\" width=\"102\" height=\"58\" border=\"0\"></a></td></tr><tr><td><a href=\"#\"><img src=\"31c.gif\" onclick=\"changeDisplay('complex01b', '3_1c.gif')\" width=\"105\" height=\"58\" border=\"0\"></a></td><td><a href=\"#\"><img src=\"32c.gif\" onclick=\"changeDisplay('complex01b', '3_2c.gif')\" width=\"103\" height=\"58\" border=\"0\"></a></td><td><a href=\"#\"><img src=\"33c.gif\" onclick=\"changeDisplay('complex01b', '3_3c.gif')\" width=\"102\" height=\"58\" border=\"0\"></a></td></tr><tr><td><a href=\"#\"><img src=\"31d.gif\" onclick=\"changeDisplay('complex01b', '3_1d.gif')\" width=\"105\" height=\"60\" border=\"0\"></a></td><td><a href=\"#\"><img src=\"32d.gif\" onclick=\"changeDisplay('complex01b', '3_2d.gif')\" width=\"103\" height=\"60\" border=\"0\"></a></td><td><a href=\"#\"><img src=\"33d.gif\" onclick=\"changeDisplay('complex01b', '3_3d.gif')\" width=\"102\" height=\"60\" border=\"0\"></a></td></tr><tr><td colspan=\"3\"><img src=\"34.gif\" width=\"310\" height=\"14\"></td></tr></table></center>"	}		// FOR COMPLEX 01b ::  RETURN TO BUISNESS CARDS 	else if (numPics=="complex01b") {		// INSERT the Larger Version of Image		displayContents = "<BR><center><table width=\"425\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><center><a href=\"#\"><img src=\"" + imageFile + "\" onclick=\"changeDisplay('complex01', 'NA')\" border=\"0\" valign=\"top\"></a></center></td></tr></table></center>"	}	// FOR COMPLEX GLASS 02	else if (numPics=="complexGlass02") {		// INSERT the Larger Version of Image Provide Alternatives		displayContents = "<BR><center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + imageFile + "\" id=\"thisImage\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><a href=\"#\"><img src=\"adot.gif\" onclick=\"changeDisplay('complexGlass02', '2-2')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"udot.gif\" width=\"23\" height=\"15\" border=\"0\"></TD></TR></Table></center>"	}		// FOR 320 x 244 MOVIES	else if (numPics=="movie") {		// INSERT the Larger Version of Image Provide Alternatives		displayContents = "<center><BR><Table><TR height=\"244\"><TD bgcolor=\"silver\" width=\"324\" height=\"244\" align=\"center\"><object border=\"1\" classid=\"clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B\" codebase=\"http://www.apple.com/qtactivex/qtplugin.cab\" height=\"244\" width=\"324\" align=\"top\"><param name=\"playeveryframe\" value=\"true\"><param name=\"src\" value=\"" + imageFile + "\"><param name=\"autoplay\" value=\"true\"><param name=\"controller\" value=\"false\"><embed align=\"top\" height=\"244\" pluginspage=\"http://www.apple.com/quicktime/download/\" src=\"" + imageFile + "\" type=\"video/quicktime\" width=\"324\" controller=\"false\" autoplay=\"true\" playeveryframe=\"true\"></td></tr></Table></center>"	}		// Opens Up External Page from image	else {		// INSERT the Larger Version of Image Provide Alternatives		displayContents = "<BR><center><table width=\"425\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><center><a href=\"" + imageFile + "\" target=\"brandNew\"><img src=\"" + numPics + "\" border=\"0\" valign=\"top\"></a></center></td></tr></table></center>"	}			// INSERT THE Selected Quote	document.getElementById("display").innerHTML=displayContents	}/************************************************************************************Function: twoOptions()Description: This function inserts a two image display.************************************************************************************/function twoOptions(position, image01, image02) {	// VIEW IMAGE 01	 if (position=="1") {		// INSERT THE FIRST IMAGE		displayContents = "<BR><center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image01 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"twoOptions('2', '" + image01 +"', '" + image02 +"')\" width=\"23\" height=\"15\" border=\"0\"></a></TD></TR></Table></center>"	}		// VIEW IMAGE 02	 else if (position=="2") {		// INSERT THE SECOND IMAGE		displayContents = "<BR><center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image02 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"twoOptions('1', '" + image01 +"', '" + image02 +"')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"></TD></TR></Table></center>"	}		else {		}	// INSERT THE Selected Quote	document.getElementById("display").innerHTML=displayContents	}/************************************************************************************Function: labelTwoOptions()Description: This function inserts a labeled two image display.************************************************************************************/function labelTwoOptions(theLabel, position, image01, image02) {	// VIEW IMAGE 01	 if (position=="1") {		// INSERT THE FIRST IMAGE		displayContents = "<center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image01 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><img src=\"" + theLabel + "\"><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"labelTwoOptions('" + theLabel + "','2', '" + image01 +"', '" + image02 +"')\" width=\"23\" height=\"15\" border=\"0\"></a></TD></TR></Table></center>"	}		// VIEW IMAGE 02	 else if (position=="2") {		// INSERT THE SECOND IMAGE		displayContents = "<center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image02 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><img src=\"" + theLabel + "\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"labelTwoOptions('" + theLabel + "','1', '" + image01 +"', '" + image02 +"')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"></TD></TR></Table></center>"	}		else {		}	// INSERT THE Selected Quote	document.getElementById("display").innerHTML=displayContents	}/************************************************************************************Function: labelThreeOptions()Description: This function inserts a labeled three image display.************************************************************************************/function labelThreeOptions(theLabel, position, image01, image02, image03) {	// VIEW IMAGE 01	 if (position=="1") {		// INSERT THE FIRST IMAGE		displayContents = "<center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image01 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><img src=\"" + theLabel + "\"><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"labelThreeOptions('" + theLabel + "','2', '" + image01 +"', '" + image02 +"', '" + image03 + "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"labelThreeOptions('"+ theLabel + "','3', '" + image01 +"', '" + image02 +"', '" + image03 + "')\" width=\"23\" height=\"15\" border=\"0\"></a></TD></TR></Table></center>"	}		// VIEW IMAGE 02	 else if (position=="2") {		// INSERT THE SECOND IMAGE		displayContents = "<center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image02 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><img src=\"" + theLabel + "\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"labelThreeOptions('" + theLabel + "','1', '" + image01 +"', '" + image02  +"', '" + image03 +"')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"labelThreeOptions('"+ theLabel + "','3', '" + image01 +"', '" + image02 +"', '" + image03 + "')\" width=\"23\" height=\"15\" border=\"0\"></a></TD></TR></Table></center>"	}			// VIEW IMAGE 03	 else if (position=="3") {		// INSERT THE SECOND IMAGE		displayContents = "<center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image03 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><img src=\"" + theLabel + "\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"labelThreeOptions('"+ theLabel + "','1', '" + image01 +"', '" + image02  +"', '" + image03 +"')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"labelThreeOptions('"+ theLabel + "','2', '" + image01 +"', '" + image02 +"', '" + image03 + "')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"></TD></TR></Table></center>"	}		else {		}	// INSERT THE Selected Quote	document.getElementById("display").innerHTML=displayContents	}/************************************************************************************Function: threeOptions()Description: This function inserts a three image display.************************************************************************************/function threeOptions(position, image01, image02, image03) {	// VIEW IMAGE 01	 if (position=="1") {		// INSERT THE FIRST IMAGE		displayContents = "<BR><center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image01 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"threeOptions('2', '" + image01 +"', '" + image02 +"', '" + image03 + "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"threeOptions('3', '" + image01 +"', '" + image02 +"', '" + image03 + "')\"  width=\"23\" height=\"15\" border=\"0\"></a></TD></TR></Table></center>"	}		// VIEW IMAGE 02	 else if (position=="2") {		// INSERT THE SECOND IMAGE		displayContents = "<BR><center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image02 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"threeOptions('1', '" + image01 +"', '" + image02 +"', '" + image03 + "')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"threeOptions('3', '" + image01 +"', '" + image02 +"', '" + image03 + "')\"  width=\"23\" height=\"15\" border=\"0\"></a></TD></TR></Table></center>"	}			// VIEW IMAGE 03	 else if (position=="3") {		// INSERT THE THIRD IMAGE		displayContents = "<BR><center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image03 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"threeOptions('1', '" + image01 +"', '" + image02 +"', '" + image03 + "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"threeOptions('2', '" + image01 +"', '" + image02 +"', '" + image03 + "')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"></TD></TR></Table></center>"	}		else {		}	// INSERT THE Selected Quote	document.getElementById("display").innerHTML=displayContents	}/************************************************************************************Function: quiltPage()Description: This function inserts a three image display.************************************************************************************/function quiltPage(position, image01, image02, image03) {	// VIEW IMAGE 01	 if (position=="1") {		// INSERT THE FIRST IMAGE		displayContents = "<BR><center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image01 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"><img src=\"plus.gif\" width=\"15\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"quiltPage('2', '" + image01 +"', '" + image02 +"', '" + image03 + "')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"equals.gif\" width=\"15\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"quiltPage('3', '" + image01 +"', '" + image02 +"', '" + image03 + "')\"  width=\"23\" height=\"15\" border=\"0\"></a></TD></TR></Table></center>"	}		// VIEW IMAGE 02	 else if (position=="2") {		// INSERT THE SECOND IMAGE		displayContents = "<BR><center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image02 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"quiltPage('1', '" + image01 +"', '" + image02 +"', '" + image03 + "')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"plus.gif\" width=\"15\" height=\"15\"><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"><img src=\"equals.gif\" width=\"15\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"quiltPage('3', '" + image01 +"', '" + image02 +"', '" + image03 + "')\"  width=\"23\" height=\"15\" border=\"0\"></a></TD></TR></Table></center>"	}			// VIEW IMAGE 03	 else if (position=="3") {		// INSERT THE THIRD IMAGE		displayContents = "<BR><center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image03 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"quiltPage('1', '" + image01 +"', '" + image02 +"', '" + image03 + "')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"plus.gif\" width=\"15\" height=\"15\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"quiltPage('2', '" + image01 +"', '" + image02 +"', '" + image03 + "')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"equals.gif\" width=\"15\" height=\"15\" border=\"0\"><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"></TD></TR></Table></center>"	}		else {		}	// INSERT THE Selected Quote	document.getElementById("display").innerHTML=displayContents	}/************************************************************************************Function: fourOptions()Description: This function inserts a four image display.************************************************************************************/function fourOptions(position, image01, image02, image03, image04) {	// VIEW IMAGE 01	 if (position=="1") {		// INSERT THE FIRST IMAGE		displayContents = "<BR><center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image01 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"fourOptions('2', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fourOptions('3', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fourOptions('4', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a></TD></TR></Table></center>"	}		// VIEW IMAGE 02	 else if (position=="2") {		// INSERT THE SECOND IMAGE		displayContents = "<BR><center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image02 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"fourOptions('1', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"fourOptions('3', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fourOptions('4', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a></TD></TR></Table></center>"		}			// VIEW IMAGE 03	 else if (position=="3") {		// INSERT THE SECOND IMAGE		displayContents = "<BR><center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image03 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"fourOptions('1', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fourOptions('2', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"fourOptions('4', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a></TD></TR></Table></center>"	}		// VIEW IMAGE 04	 else if (position=="4") {			displayContents = "<BR><center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image04 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"fourOptions('1', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fourOptions('2', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fourOptions('3', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"></TD></TR></Table></center>"		}				else {		}	// INSERT THE Selected Quote	document.getElementById("display").innerHTML=displayContents	}/************************************************************************************Function: fiveOptions()Description: This function inserts a labeled Five image display.************************************************************************************/function fiveOptions(position, image01, image02, image03, image04, image05) {	// VIEW IMAGE 01	 if (position=="1") {		// INSERT THE FIRST IMAGE		displayContents = "<BR><center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image01 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"fiveOptions('2', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 + "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fiveOptions('3', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fiveOptions('4', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fiveOptions('5', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a></TD></TR></Table></center>"	}		// VIEW IMAGE 02	 else if (position=="2") {		// INSERT THE SECOND IMAGE		displayContents = "<BR><center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image02 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"fiveOptions('1', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"fiveOptions('3', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fiveOptions('4', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fiveOptions('5', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a></TD></TR></Table></center>"		}			// VIEW IMAGE 03	 else if (position=="3") {		// INSERT THE SECOND IMAGE		displayContents = "<BR><center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image03 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"fiveOptions('1', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fiveOptions('2', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 + "')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"fiveOptions('4', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fiveOptions('5', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a></TD></TR></Table></center>"	}		// VIEW IMAGE 04	 else if (position=="4") {			displayContents = "<BR><center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image04 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"fiveOptions('1', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fiveOptions('2', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 + "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fiveOptions('3', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"fiveOptions('5', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a></TD></TR></Table></center>"		}					// VIEW IMAGE 05	 else if (position=="5") {			displayContents = "<BR><center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image05 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"fiveOptions('1', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fiveOptions('2', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 + "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fiveOptions('3', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fiveOptions('4', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"></TD></TR></Table></center>"		}				else {		}	// INSERT THE Selected Quote	document.getElementById("display").innerHTML=displayContents	}/************************************************************************************Function: labelFiveOptions()Description: This function inserts a labeled Five image display.************************************************************************************/function labelFourOptions(theLabel, position, image01, image02, image03, image04) {	// VIEW IMAGE 01	 if (position=="1") {		// INSERT THE FIRST IMAGE		displayContents = "<center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image01 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><img src=\"" + theLabel + "\"><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '2', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 + "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '3', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '4', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a></TD></TR></Table></center>"	}		// VIEW IMAGE 02	 else if (position=="2") {		// INSERT THE SECOND IMAGE		displayContents = "<center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image02 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><img src=\"" + theLabel + "\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '1', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '3', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '4', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '5', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a></TD></TR></Table></center>"		}			// VIEW IMAGE 03	 else if (position=="3") {		// INSERT THE SECOND IMAGE		displayContents = "<center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image03 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><img src=\"" + theLabel + "\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '1', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '2', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 + "')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '4', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '5', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a></TD></TR></Table></center>"	}		// VIEW IMAGE 04	 else if (position=="4") {			displayContents = "<center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image04 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><img src=\"" + theLabel + "\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '1', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '2', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 + "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '3', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '5', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a></TD></TR></Table></center>"		}					// VIEW IMAGE 05	 else if (position=="5") {			displayContents = "<center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image05 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><img src=\"" + theLabel + "\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '1', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '2', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 + "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '3', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '4', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"></TD></TR></Table></center>"		}				else {		}	// INSERT THE Selected Quote	document.getElementById("display").innerHTML=displayContents	}/************************************************************************************Function: labelFiveOptions()Description: This function inserts a labeled Five image display.************************************************************************************/function labelFiveOptions(theLabel, position, image01, image02, image03, image04, image05) {	// VIEW IMAGE 01	 if (position=="1") {		// INSERT THE FIRST IMAGE		displayContents = "<center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image01 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><img src=\"" + theLabel + "\"><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '2', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 + "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '3', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '4', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '5', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a></TD></TR></Table></center>"	}		// VIEW IMAGE 02	 else if (position=="2") {		// INSERT THE SECOND IMAGE		displayContents = "<center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image02 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><img src=\"" + theLabel + "\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '1', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '3', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '4', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '5', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a></TD></TR></Table></center>"		}			// VIEW IMAGE 03	 else if (position=="3") {		// INSERT THE SECOND IMAGE		displayContents = "<center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image03 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><img src=\"" + theLabel + "\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '1', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '2', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 + "')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '4', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '5', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a></TD></TR></Table></center>"	}		// VIEW IMAGE 04	 else if (position=="4") {			displayContents = "<center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image04 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><img src=\"" + theLabel + "\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '1', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '2', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 + "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '3', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '5', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a></TD></TR></Table></center>"		}					// VIEW IMAGE 05	 else if (position=="5") {			displayContents = "<center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image05 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><img src=\"" + theLabel + "\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '1', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '2', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 + "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '3', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"labelFiveOptions('" + theLabel + "', '4', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"></TD></TR></Table></center>"		}				else {		}	// INSERT THE Selected Quote	document.getElementById("display").innerHTML=displayContents	}/************************************************************************************Function: sixOptions()Description: This function inserts a six image display.************************************************************************************/function sixOptions(position, image01, image02, image03, image04, image05, image06) {	// VIEW IMAGE 01	 if (position=="1") {		// INSERT THE FIRST IMAGE		displayContents = "<BR><center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image01 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"fiveOptions('2', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 + "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fiveOptions('3', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "', '" + image06 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fiveOptions('4', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "', '" + image06 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fiveOptions('5', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "', '" + image06 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fiveOptions('6', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "', '" + image06 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a></TD></TR></Table></center>"	}		// VIEW IMAGE 02	 else if (position=="2") {		// INSERT THE SECOND IMAGE		displayContents = "<BR><center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image02 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"fiveOptions('1', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "', '" + image06 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"fiveOptions('3', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "', '" + image06 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fiveOptions('4', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "', '" + image06 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fiveOptions('5', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "', '" + image06 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fiveOptions('6', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "', '" + image06 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a></TD></TR></Table></center>"		}			// VIEW IMAGE 03	 else if (position=="3") {		// INSERT THE SECOND IMAGE		displayContents = "<BR><center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image03 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"fiveOptions('1', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "', '" + image06 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fiveOptions('2', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 + "')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"fiveOptions('4', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "', '" + image06 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fiveOptions('5', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "', '" + image06 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fiveOptions('6', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "', '" + image06 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a></TD></TR></Table></center>"	}		// VIEW IMAGE 04	 else if (position=="4") {			displayContents = "<BR><center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image04 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"fiveOptions('1', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "', '" + image06 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fiveOptions('2', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 + "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fiveOptions('3', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "', '" + image06 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"fiveOptions('5', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "', '" + image06 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fiveOptions('6', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "', '" + image06 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a></TD></TR></Table></center>"		}			// VIEW IMAGE 05	 else if (position=="5") {			displayContents = "<BR><center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><TR><TD><img src=\"" + image05 + "\" border=\"0\" valign=\"top\"></TD></TR><TR><TD align=\"center\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"fiveOptions('1', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "', '" + image06 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fiveOptions('2', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 + "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fiveOptions('3', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "', '" + image06 +  "')\" width=\"23\" height=\"15\" border=\"0\"><img src=\"udot.gif\" onclick=\"fiveOptions('4', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "', '" + image06 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a><img src=\"adot.gif\" width=\"23\" height=\"15\" border=\"0\"><a href=\"#\"><img src=\"udot.gif\" onclick=\"fiveOptions('6', '" + image01 +"', '" + image02 +"', '" + image03 + "', '" + image04 + "', '" + image05 +  "', '" + image06 +  "')\" width=\"23\" height=\"15\" border=\"0\"></a></TD></TR></Table></center>"		}			else {		}	// INSERT THE Selected Quote	document.getElementById("display").innerHTML=displayContents	}		/************************************************************************************		Function: replaceImage(numDots, position, srcVal)		Description: This function swaps images when dots are clicked.		Caution: It assumes a minimum of two dots!		************************************************************************************/		function replaceImage(numDots, position, srcVal) {							//reset main image			document.getElementById("picView").src=srcVal			//gray out first two			document.getElementById("oneDot").src="udot.gif"			document.getElementById("twoDot").src="udot.gif"						// UP TO FOUR DOTS 			if (numDots=="4") {			document.getElementById("threeDot").src="udot.gif"			document.getElementById("fourDot").src="udot.gif"			}			// UP TO FIVE DOTS 			else if (numDots=="5") {			document.getElementById("threeDot").src="udot.gif"			document.getElementById("fourDot").src="udot.gif"			document.getElementById("fiveDot").src="udot.gif"			}			else {			}						//darken desired dot			if(position=="1"){			document.getElementById("oneDot").src="adot.gif"			}			else if(position=="2"){			document.getElementById("twoDot").src="adot.gif"			}			else if(position=="3"){			document.getElementById("threeDot").src="adot.gif"			}			else if(position=="4"){			document.getElementById("fourDot").src="adot.gif"			}			else if(position=="5"){			document.getElementById("fiveDot").src="adot.gif"			}			else {			}					}/************************************************************************************Function: openBooklet()Description: This function sets up an open display of booklet w. back, current, forward and a pdf link within.************************************************************************************/function openBooklet(pdf, page) {			// FOR OLD 28X SCHEDULE	 if (pdf=="oldSchedule.pdf") {	 	if (page=="1") {	 		goBack = "2"			viewImage = "6-01.jpg"			goForward = "2"		}		else {	 		goBack = "1"			viewImage = "6-02.jpg"			goForward = "1"		}			}			// FOR NEW 28X SCHEDULE	 else if (pdf=="newSchedule.pdf") {		if (page=="1") {	 		goBack = "9"			viewImage = "5-00.gif"			goForward = "2"		}		else if (page=="2") {	 		goBack = "1"			viewImage = "5-01.jpg"			goForward = "3"		}		else if (page=="3") {	 		goBack = "2"			viewImage = "5-02.jpg"			goForward = "4"		}		else if (page=="4") {	 		goBack = "3"			viewImage = "5-03.jpg"			goForward = "5"		}		else if (page=="5") {	 		goBack = "4"			viewImage = "5-04.jpg"			goForward = "6"		}		else if (page=="6") {	 		goBack = "5"			viewImage = "5-05.jpg"			goForward = "7"		}		else if (page=="7") {	 		goBack = "6"			viewImage = "5-06.jpg"			goForward = "8"		}		else if (page=="8") {	 		goBack = "7"			viewImage = "5-07.jpg"			goForward = "9"		}		else if (page=="9") {	 		goBack = "8"			viewImage = "5-08.jpg"			goForward = "10"		}		else if (page=="10") {	 		goBack = "9"			viewImage = "5-09.jpg"			goForward = "1"		}		else {		}	}			// VIEW IMAGE 03	 else if (pdf=="publication.pdf") {		if (page=="1") {	 		goBack = "8"			viewImage = "bg1.gif"			goForward = "2"		}		else if (page=="2") {	 		goBack = "1"			viewImage = "bg2.gif"			goForward = "3"		}		else if (page=="3") {	 		goBack = "2"			viewImage = "bg3.gif"			goForward = "4"		}		else if (page=="4") {	 		goBack = "3"			viewImage = "bg4.gif"			goForward = "5"		}		else if (page=="5") {	 		goBack = "4"			viewImage = "bg5.gif"			goForward = "6"		}		else if (page=="6") {	 		goBack = "5"			viewImage = "bg6.gif"			goForward = "7"		}		else if (page=="7") {	 		goBack = "6"			viewImage = "bg7.gif"			goForward = "8"		}		else if (page=="8") {	 		goBack = "7"			viewImage = "bg8.gif"			goForward = "1"		}		else {		}	}		else {		}			// INSERT THE Selected Quote	document.getElementById("display").innerHTML="<BR><center><TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><TR><TD><a href=\"#\"><img src=\"back.gif\" onclick=\"openBooklet('" + pdf + "', '" + goBack +"')\"  border=\"0\" valign=\"top\"></a></TD><TD><img src=\"" + viewImage + "\" border=\"0\" valign=\"top\"></TD><TD><a href=\"#\"><img src=\"forward.gif\" onclick=\"openBooklet('" + pdf + "', '" + goForward +"')\" border=\"0\" valign=\"top\"></a></TD></TR><TR><TD COLSPAN=\"3\" ALIGN=\"center\"><a href=\"" + pdf + "\"  target=\"openPDF\"><img src=\"click.gif\" border=\"0\" valign=\"top\"></a></TD></TR></Table></center>"}/************************************************************************************Function: loadRoll()Description: This function inserts a new roll into the scroll bar.************************************************************************************/function loadRoll(rollXX) {	// LOAD ROLL 01	if (rollXX =="1") {		// load roll 01		loadedRoll = "<Table border=\"0\" cellspacing=\"0\"  width=\"100%\" height=\"100%\"><center><TR height=\"15\"><td VALIGN=BOTTOM colspan=8>&nbsp;&nbsp;<img src=\"Series1.gif\"  valign=\"top\" width=\"193\" height=\"15\" border=\"0\"></td></tr><TR height=\"*\"><TD VALIGN=TOP ALIGN=CENTER><a href=\"#\"><img src=\"11_sm.jpg\" onclick=\"changeDisplay('1', '11.jpg')\" valign=\"top\" width=\"80\" height=\"52\" border=\"0\"></a></TD><TD VALIGN=TOP ALIGN=CENTER><a href=\"#\"><img src=\"12_sm.jpg\" onclick=\"changeDisplay('1', '12.jpg')\" width=\"80\" height=\"52\" border=\"0\"></a></TD><TD VALIGN=TOP ALIGN=CENTER ><a href=\"#\"><img src=\"13_sm.jpg\" onclick=\"changeDisplay('1', '13.jpg')\"  width=\"80\" height=\"52\" border=\"0\"></a></TD><TD VALIGN=TOP ALIGN=CENTER><a href=\"#\"><img src=\"14_sm.jpg\" onclick=\"changeDisplay('1', '14.jpg')\"  width=\"80\" height=\"52\" border=\"0\"></a></TD><TD VALIGN=TOP ALIGN=CENTER ><a href=\"#\"><img src=\"15_sm.jpg\" onclick=\"changeDisplay('1', '15.jpg')\"  width=\"80\" height=\"52\" border=\"0\"></a></TD><TD VALIGN=TOP ALIGN=CENTER ><a href=\"#\"><img src=\"16_sm.jpg\" onclick=\"changeDisplay('1', '16.jpg')\"  width=\"80\" height=\"52\" border=\"0\"></a></TD><TD VALIGN=TOP ALIGN=CENTER ><a href=\"#\"><img src=\"forward.jpg\" onclick=\"loadRoll('2')\" width=\"12\" height=\"52\" border=\"0\"></a></TD><TD ALIGN=CENTER >&nbsp;&nbsp;</TD>"		}		// LOAD ROLL 02	else if (rollXX =="2") {		// load roll 02		loadedRoll = "<Table border=\"0\" cellspacing=\"0\"  width=\"100%\" height=\"100%\"><center><TR height=\"15\"><td VALIGN=BOTTOM colspan=8>&nbsp;&nbsp;<img src=\"Series2.gif\"  valign=\"top\" width=\"193\" height=\"15\" border=\"0\"></td></tr><TR height=\"*\"><TD ALIGN=CENTER >&nbsp;</TD><TD VALIGN=TOP ALIGN=CENTER ><a href=\"#\"><img src=\"back.jpg\" onclick=\"loadRoll('1')\" width=\"12\" height=\"52\" border=\"0\"></a></TD><TD VALIGN=TOP ALIGN=CENTER><a href=\"#\"><img src=\"21_sm.jpg\" onclick=\"changeDisplay('1', '21.jpg')\" valign=\"top\" width=\"80\" height=\"52\" border=\"0\"></a></TD><TD VALIGN=TOP ALIGN=CENTER><a href=\"#\"><img src=\"22_sm.jpg\" onclick=\"changeDisplay('1', '22.jpg')\" width=\"80\" height=\"52\" border=\"0\"></a></TD><TD VALIGN=TOP ALIGN=CENTER ><a href=\"#\"><img src=\"23_sm.jpg\" onclick=\"changeDisplay('1', '23.jpg')\"  width=\"80\" height=\"52\" border=\"0\"></a></TD><TD VALIGN=TOP ALIGN=CENTER><a href=\"#\"><img src=\"24_sm.jpg\" onclick=\"changeDisplay('1', '24.jpg')\"  width=\"80\" height=\"52\" border=\"0\"></a></TD><TD VALIGN=TOP ALIGN=CENTER><a href=\"#\"><img src=\"25_sm.jpg\" onclick=\"changeDisplay('1', '25.jpg')\"  width=\"80\" height=\"52\" border=\"0\"></a></TD><TD VALIGN=TOP ALIGN=CENTER ><a href=\"#\"><img src=\"26_sm.jpg\" onclick=\"changeDisplay('1', '26.jpg')\"  width=\"80\" height=\"52\" border=\"0\"></a></TD><TD VALIGN=TOP ALIGN=CENTER ><a href=\"#\"><img src=\"forward.jpg\" onclick=\"loadRoll('3')\" width=\"12\" height=\"52\" border=\"0\"></a></TD><TD ALIGN=CENTER >&nbsp;&nbsp;</TD>"	}		// LOAD ROLL 03	else if (rollXX =="3") {		// load roll 03		loadedRoll = "<Table border=\"0\" cellspacing=\"0\"  width=\"100%\" height=\"100%\"><center><TR height=\"15\"><td VALIGN=BOTTOM colspan=8>&nbsp;&nbsp;<img src=\"Series3.gif\"  valign=\"top\" width=\"193\" height=\"15\" border=\"0\"></td></tr><TR height=\"*\"><TD ALIGN=CENTER >&nbsp;</TD><TD VALIGN=TOP ALIGN=CENTER ><a href=\"#\"><img src=\"back.jpg\" onclick=\"loadRoll('2')\" width=\"12\" height=\"52\" border=\"0\"></a></TD><TD VALIGN=TOP ALIGN=CENTER><a href=\"#\"><img src=\"31_sm.jpg\" onclick=\"changeDisplay('1', '31.jpg')\" valign=\"top\" width=\"80\" height=\"52\" border=\"0\"></a></TD><TD VALIGN=TOP ALIGN=CENTER><a href=\"#\"><img src=\"32_sm.jpg\" onclick=\"changeDisplay('1', '32.jpg')\" width=\"80\" height=\"52\" border=\"0\"></a></TD><TD VALIGN=TOP ALIGN=CENTER ><a href=\"#\"><img src=\"33_sm.jpg\" onclick=\"changeDisplay('1', '33.jpg')\"  width=\"80\" height=\"52\" border=\"0\"></a></TD><TD VALIGN=TOP ALIGN=CENTER><a href=\"#\"><img src=\"34_sm.jpg\" onclick=\"changeDisplay('1', '34.jpg')\"  width=\"80\" height=\"52\" border=\"0\"></a></TD><TD VALIGN=TOP ALIGN=CENTER ><a href=\"#\"><img src=\"35_sm.jpg\" onclick=\"changeDisplay('1', '35.jpg')\"  width=\"80\" height=\"52\" border=\"0\"></a></TD><TD VALIGN=TOP ALIGN=CENTER ><a href=\"#\"><img src=\"36_sm.jpg\" onclick=\"changeDisplay('1', '36.jpg')\"  width=\"80\" height=\"52\" border=\"0\"></a></TD><TD VALIGN=TOP ALIGN=CENTER ><a href=\"#\"><img src=\"forward.jpg\" onclick=\"loadRoll('4')\" width=\"12\" height=\"52\" border=\"0\"></a></TD><TD ALIGN=CENTER >&nbsp;&nbsp;</TD>"	}		// LOAD ROLL 04	else if (rollXX =="4") {		// load roll 04		loadedRoll = "<Table border=\"0\" cellspacing=\"0\"  width=\"100%\" height=\"100%\"><center><TR height=\"15\"><td VALIGN=BOTTOM colspan=8>&nbsp;&nbsp;<img src=\"Series3.gif\"  valign=\"top\" width=\"193\" height=\"15\" border=\"0\"></td></tr><TR height=\"*\"><TD ALIGN=CENTER >&nbsp;</TD><TD VALIGN=TOP ALIGN=CENTER ><a href=\"#\"><img src=\"back.jpg\" onclick=\"loadRoll('3')\" width=\"12\" height=\"52\" border=\"0\"></a></TD><TD VALIGN=TOP ALIGN=CENTER><a href=\"#\"><img src=\"41_sm.jpg\" onclick=\"changeDisplay('1', '41.jpg')\" valign=\"top\" width=\"80\" height=\"52\" border=\"0\"></a></TD><TD VALIGN=TOP ALIGN=CENTER><a href=\"#\"><img src=\"42_sm.jpg\" onclick=\"changeDisplay('1', '42.jpg')\" width=\"80\" height=\"52\" border=\"0\"></a></TD><TD VALIGN=TOP ALIGN=CENTER ><a href=\"#\"><img src=\"43_sm.jpg\" onclick=\"changeDisplay('1', '43.jpg')\"  width=\"80\" height=\"52\" border=\"0\"></a></TD><TD VALIGN=TOP ALIGN=CENTER><a href=\"#\"><img src=\"44_sm.jpg\" onclick=\"changeDisplay('1', '44.jpg')\"  width=\"80\" height=\"52\" border=\"0\"></a></TD><TD VALIGN=TOP ALIGN=CENTER ><a href=\"#\"><img src=\"45_sm.jpg\" onclick=\"changeDisplay('1', '45.jpg')\"  width=\"80\" height=\"52\" border=\"0\"></a></TD><TD VALIGN=TOP ALIGN=CENTER ><a href=\"#\"><img src=\"46_sm.jpg\" onclick=\"changeDisplay('1', '46.jpg')\"  width=\"80\" height=\"52\" border=\"0\"></a></TD><TD VALIGN=TOP ALIGN=CENTER >&nbsp;</TD><TD ALIGN=CENTER >&nbsp;&nbsp;</TD>"	}		else {	}	// INSERT THE SELECTED ROLL	document.getElementById("scroll").innerHTML=loadedRoll	}