<!-- Begin
// ----------------------------------------------------------------------------	//
//										//
//	This javascript program creates the buttons for all the level two 	//
//	Sandicor web pages. To make button changes:  				//
// 										//
//      1. Change the button text in the first array. The buttons display	//
//   	   in the same order as they show here.					//
//										//
//	2. Change the link address in the second array. The link address	//
//  	   must be the same number as the button text. For example:		//
//         If the button text for title[9] is changed, then you need to		//
//  	   change the links[9] value.						//
//										//
//	3. You should never have to change any of the other code in this	//
// 	   script. You can however, add more buttons or delete buttons		//
//	   by adding or deleting entries in the arrays. There must always	//
//	   be the same number of entries in both arrays. The numbers of		//
//	   each entry must be in sequential order.				//
//										//
//	Script created by:  Dianne Blake     December 29, 2002			//
//			    http://members.cox.net/writeit			//
//			    writeit@cox.net					//
//										//
// ----------------------------------------------------------------------------	//


var dirlevel = "../";		// This is the directory level - in this case 2nd level //

var oddeven = "odd";		// Use this variable to determine button colors & rollovers // 

var title = new Array();	// These are the button titles //
title[0] = "Back";
title[1] = "About Sandicor";
title[2] = "About Tempo";
title[3] = "Available Forms";
title[4] = "IDX Information";
title[5] = "Lockbox Information";
title[6] = "Member Services/Bill Pay:;
title[7] = "Rules &amp; Regulations";
title[8] = "Sales Statistics";
title[9] = "Service Locations";
title[10] = "Statewide Reciprocal";
title[11]= "Technical Support";
title[12]= "Tempo Courses";
title[13]= "Tempo Manuals";
title[14]= "Tours/Caravans";
title[15]= "Sandicor Home";


var links = new Array();	// These are the button links //
links[0] = "javascript:window.history.go(-1);";
links[1] = "about_sandicor.html";
links[2] = "about_tempo.html";
links[3] = "forms.html";
links[4] = "idx.html";
links[5] = "lockbox.html";
links[6] = "member-services.html";
links[7] = "rules.html";
links[8] = "statistics.html";
links[9] = "locations.html";
links[10] = "reciprocal.html";
links[11]= "help_desk.html";
links[12]= "training.html";
links[13]= "manuals.html";
links[14]= "tours.html";
links[15]= "Default.htm";


document.write('<table width="207">');

for (i=0; i < title.length; i++)

{ 
   if ((oddeven == "odd") && (title[i] == "Back"))

      { document.write('<tr><td class=\"odd\"><p class=\"button\">');
	document.write('<a id=\"odd\" href=' + links[i] + '>' + title[i] + '</a></p></td></tr>');
	oddeven = "even";}
	 
      else if (oddeven == "odd")
	
	{ document.write('<tr><td class=\"odd\"><p class=\"button\">');
	  document.write('<a id=\"odd\" href=' + dirlevel + links[i] + '>' + title[i] + '</a></p></td></tr>');
	  oddeven = "even"; }
		 

   else {	
	document.write('<tr><td class=\"even\"><p class=\"button\">');
	document.write('<a id=\"even\" href=' + dirlevel + links[i] + '>' + title[i] + '</a></p></td></tr>');
	oddeven = "odd"; 
		}
} 

document.write('</table>');

// End -->