/**
 * @author Filchakov
 */

/**
 * Increment click count for story with specified ID
 *
 * @param  integer storyID
 * @param  string  handlerElement
 */
function incStoryClicksCount(storyID, handlerElement)
{
    if (ROOT_URL != null && document.getElementById(handlerElement) != null)
    {
        document.getElementById(handlerElement).src = ROOT_URL + '/request.php?action=action_storyonclick&_storyid=' + storyID;
    } // if
}