function moveInnerHtml(strSourceId, strDestinationId, blnStripCommentedTag) {
       var objSource;
       var objDestination;
       var strHtml;
       
       if (document.getElementById(strSourceId) && document.getElementById(strDestinationId)) {
            objSource=document.getElementById(strSourceId);
            objDestination=document.getElementById(strDestinationId);

              strHtml=objSource.innerHTML;
              if (blnStripCommentedTag==true) {
                            strHtml=strHtml.replace(/<!--/gim,'');
                            strHtml=strHtml.replace(/-->/gim,'');
              }
              objDestination.innerHTML=strHtml;
              objSource.innerHTML="";
       }
}