function colorSet(akt_link){
document.getElementById(akt_link).style.color='#BABFE7';
document.getElementById(akt_link).style.textDecoration='underline';
}
function colorSetOut(akt_link){
document.getElementById(akt_link).style.color='#616A9D';
document.getElementById(akt_link).removeAttribute("style");
}