﻿

function showmore(evt) {

    //alert("call function");
    var elem = null;
    var obj = null;
    evt = (evt) ? evt : ((window.event) ? window.event : null);
    if (evt) {

        elem = (evt.target) ? evt.target : event.srcElement;
        obj = get_previoussibling(elem);
    }
    if (obj == null) return;
    
    if($(obj).hasClass("Hide"))
    {
        $(obj).removeClass('Hide');
        $(obj).addClass('Visible');
        $(elem).hide();
    }
    
}
function get_previoussibling(n) {
    x = n.previousSibling;
    while (x.nodeType != 1) {
        x = x.previousSibling;
    }
    return x;
}
$(function()
{
	$('div td .RadEditor').removeClass('Hide');
});

