function navSection(navLink) {
	if(navLink != '' || navLink != "undefined") {
		var section = navLink.match(/[A-Za-z]*[0-9]/);
	
		document.getElementById(section).style.display = 'block';
		document.getElementById(section).parentNode.firstChild.setAttribute('id','activeHdr');
		document.getElementById(navLink).setAttribute('id','activeLink');
	}
}



function openWin(URL) {
aWindow=window.open(URL,"composerwindow","toolbar=no,width=398,height=293,left=200,screenX=200,top=200,screenY=200,status=no,scrollbars=no,resize=no,menubar=no");}