	
	function getObject(strName) {
		var myobject
		if(document.all) {
			myobject = document.all[strName];
		}
		else if(document.getElementById) {
			myobject = document.getElementById(strName);
		}
		return myobject;
	}

	function changeTab(strID) {
			var thisObj1
			var thisObj2
			var thisObj3
			var thisObjContent1
			var thisObjContent2
			var thisObjContent3
			thisObj1 = getObject('tab-pts');
			thisObj2 = getObject('tab-g');
			thisObj3 = getObject('tab-gaa');
			thisObj4 = getObject('cbc-ldr-tabs');
			thisObjContent1 = getObject('cbc-ldr-pts');
			thisObjContent2 = getObject('cbc-ldr-goals');
			thisObjContent3 = getObject('cbc-ldr-gaa');
			
			if (strID == 1) {
				thisObj1.className = 'first active'
				thisObj2.className = 'taboff'
				thisObj3.className = 'taboff last'
				thisObj4.className = 'tabtops-large'
				thisObjContent1.style.display = 'inline'
				thisObjContent2.style.display = 'none'
				thisObjContent3.style.display = 'none'
				}
			else if (strID == 2) {
				thisObj1.className = 'first nextactive'
				thisObj2.className = 'taboff active'
				thisObj3.className = 'taboff last'
				thisObj4.className = 'tabtops-large grad'
				thisObjContent1.style.display = 'none'
				thisObjContent2.style.display = 'inline'
				thisObjContent3.style.display = 'none'
				}
			else if (strID == 3) {
				thisObj1.className = 'first'
				thisObj2.className = 'taboff nextactive'
				thisObj3.className = 'taboff last lastactive'
				thisObj4.className = 'tabtops-large grad'
				thisObjContent1.style.display = 'none'
				thisObjContent2.style.display = 'none'
				thisObjContent3.style.display = 'inline'
				}
		}
