function mainLayoutSetActiveLink(linkId) {
	if (linkId == 'link' || linkId == 'LOGINlink')
		return;

	var linkObj= document.getElementById(linkId);
	if (linkObj == null) {
		linkObj= document.getElementById('HOMElink');
	}
	linkObj.style.textDecorationUnderline= true;
	linkObj.style.color= 'red';
}