			var curSection = 'home';
		
		function setCurrentNav(){
			y=document.getElementById(curSection);
			y.attributes['class'].value = 'bgcolorON';
		}
		
		function changeContent(sectionID,sectionName){
			
				x=document.getElementById(sectionName + '_' + sectionID);
				x.attributes['class'].value = 'bgcolorOFF';
				curSection = sectionName + '_' + sectionID;
			
			
			document.location.href  = ' ';
		}
		
		function newWindow(theUrl, newWindow, width, height){
			if (newWindow){
				newWin = window.open(theUrl,'newWin', 'left=0,top=0,width=' + width + ',height=' + height + ',menubar=no,toolbar=no,locationbar=yes,statusbar=yes,scrollbars=yes,resizable=yes');
			} else {
				document.location.href = theUrl;
			}
			
		}
