﻿
function showBlock(obj)
{
    $("#" + obj).attr("class", "showBlock");
}

function showInline(obj)
{
    $("#" + obj).attr("class", "showInline");
}

function hideObj(obj)
{
    $("#" + obj).attr("class", "hidden");
}
