function setSection(aSection) {
	if (aSection == null || "" == aSection) {
		aSection = 'homepage';
	}
	var elem = document.getElementById(aSection);
	if (elem != null) {
		elem.id = 'current';
		var header = document.getElementById(aSection + '-h');
		header.className = 'current';
	}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function open_window(url, name, feat) {
	MM_openBrWindow(url, name, feat);
}

