﻿function __SelectableLinkClick(link, cssSet, cssNot)
{
    var h = document.getElementById(link.id + '_h');
    if (h.value == 'set')
    {
        h.value = 'not';
        link.className = cssNot;
    }
    else
    {
        h.value = 'set';
        link.className = cssSet;
    }
}