<!--

// takes variable sectionName from html pages and uses it to generate a page title
var title =0;
var divTitle = document.getElementById('sectionTitlediv');
var sectionCodeArray = new Array("NA","A","A1","A2","A3","A4","A5","A6","B","B1","B2","B3","B4","B5","C","C1","C2","C3","C4","C5","D","D1","D2","D3","D4","R","S","X","Y","Z");
var sectionArray = new Array();

	sectionArray[0] = "SAS CUSTOMER SUPPORT / ";
	
	sectionArray[1] = "KNOWLEDGE BASE / ";
	sectionArray[2] = "KNOWLEDGE BASE / " + "<span class = 'L1'>SYSTEM REQUIREMENTS</span>";
	sectionArray[3] = "KNOWLEDGE BASE / " + "<span class = 'L1'>INSTALL CENTER</span>";
	sectionArray[4] = "KNOWLEDGE BASE / " + "<span class = 'L1'>PRODUCT DOCUMENTATION</span>";
	sectionArray[5] = "KNOWLEDGE BASE / " + "<span class = 'L1'>PAPERS</span>";
	sectionArray[6] = "KNOWLEDGE BASE / " + "<span class = 'L1'>SAMPLES & SAS NOTES</span>";
	sectionArray[7] = "KNOWLEDGE BASE / " + "<span class = 'L1'>FOCUS AREAS</span>";
	
	sectionArray[8] = "SUPPORT / ";
	sectionArray[9] = "SUPPORT / " + "<span class = 'L1'>SUBMIT A PROBLEM</span>";
	sectionArray[10] = "SUPPORT / " + "<span class = 'L1'>CHECK PROBLEM STATUS</span>";
	sectionArray[11] = "SUPPORT / " + "<span class = 'L1'>LICENSE ASSISTANCE</span>";
	sectionArray[12] = "SUPPORT / " + "<span class = 'L1'>ADMINISTRATOR SERVICES</span>";
	sectionArray[13] = "SUPPORT / " + "<span class = 'L1'>DOWNLOADS & HOT FIXES</span>";
	
	sectionArray[14] = "LEARNING CENTER / ";
	sectionArray[15] = "LEARNING CENTER / " + "<span class = 'L1'>BOOKSTORE</span>";
	sectionArray[16] = "LEARNING CENTER / " + "<span class = 'L1'>TRAINING</span>";
	sectionArray[17] = "LEARNING CENTER / " + "<span class = 'L1'>CERTIFICATION</span>";
	sectionArray[18] = "LEARNING CENTER / " + "<span class = 'L1'>SAS LEARNING EDITION</span>";
	sectionArray[19] = "LEARNING CENTER / " + "<span class = 'L1'>HIGHER EDUCATION RESOURCES</span>";
	
	sectionArray[20] = "COMMUNITY / ";
	sectionArray[21] = "COMMUNITY / " + "<span class = 'L1'>USERS GROUPS</span>";
	sectionArray[22] = "COMMUNITY / " + "<span class = 'L1'>EVENTS</span>";
	sectionArray[23] = "COMMUNITY / " + "<span class = 'L1'>NEWSLETTERS & RSS FEEDS</span>";
	sectionArray[24] = "COMMUNITY / " + "<span class = 'L1'>DISCUSSION FORUMS</span>";
	
	sectionArray[25] = "SEARCH / ";
	sectionArray[26] = "SOFTWARE / ";
	sectionArray[27] = "CONTACT US / ";
	sectionArray[28] = "SITEMAP / ";
	sectionArray[29] = "&nbsp; ";
	


for (i=0;i<sectionCodeArray.length;i++)
	{
		if (sectionCodeArray[i] == sectionName)
			{	
			var title  = i;
			}
	}


divTitle.innerHTML = (sectionArray[title]);

   
-->

