﻿// jQuery functions, uses 'JQuery' instead of $() as later 
//conflicts with prototype lib used for formbuilder
function ShowLinkHolderBlock(linkBlockId)
{
    var element = "#" + linkBlockId;
    jQuery(element).show();
	jQuery(element).parents("td").eq(0).addClass("Selected");
}

function HideLinkHolderBlock(linkBlockId)
{
    var element = "#" + linkBlockId;
    jQuery(element).hide();
	jQuery(element).parents("td").eq(0).removeClass("Selected");
}