function enableLink(theKeyword, theText, theLink){	document.write('<li>\r');	if (current == theKeyword)		document.write('<span class="disabled">' + theText + '</span>\r');	else		document.write('<a href="' + theLink + '">' + theText + '</a>\r');	document.write('</li>\r');	}	
