// JavaScript Document

$.fn.replaceHtml = function( val ) {
    var stack = [];
    return this.each( function(i, el) {
        var oldEl = el;
        /*@cc_on // Pure innerHTML is slightly faster in IE
        oldEl.innerHTML = html;
        return oldEl;
        @*/
        var newEl = oldEl.cloneNode(false);
        newEl.innerHTML = html;
        oldEl.parentNode.replaceChild(newEl, oldEl);
        /* Since we just removed the old element from the DOM, return a
reference
        to the new element, which can be used to restore variable
references. */
        stack.push( newEl );
    }).pushStack( stack );

}; 

function setDesc(strDesc,objId){
	$("#"+objId).html(strDesc);
}
