  function makeCommentForm(){
    
       $("#commentLink").css("visibility","hidden");
       $("#comment_body, #commentWindow").css("display","block");
    
       text='<div class="left fs11 ml5 mt10 mb10" id="comment_msg"></div>';
      
       text+='<div id="comment_body">';
       text+='<div class="sprit iclose" onClick="hideComment();"></div>';
       text+='<div class="inline  ml5 mr5 pb5 row">';
         text+='<div class="right inline w70  mr10 mt3 bold c_red">'+tr_warning+'</div>'; 
         text+='<div class="w400 fs11 inline left mt3">'+tr_comment_warning+'</div>'; 
       text+='</div>';

       text+='<div class="inline  ml5 mr5 mt5 row">';
         text+='<div class="no_dist right inline w70  mr10 mt3 bold">'+tr_name+'</div>'; 
         if (!parseInt(uid) > 0){
           text+='<input id="comment_name" type="text" value="" class="w400 intxt" />';
         } else {
           text+='<b class="c_blue pt3 blockdisp">' + user + '</b>';
         }
         text+='<input id="comment_id" type="hidden" value="" class="w400 intxt" />';
         text+='<span id="cuser" class="bold left pt5"></span>'; 
       text+='</div>';
 
       text+='<div class="inline ml5 mr5 mt5 row">';
          text+='<div class="right inline w70  mr10 mt3 fs13 bold"><b>'+tr_text+'</b></div>';
          text+='<textarea id="comment_text" class="w400 intxt"  cols="30"  rows="7"></textarea>';
       text+='</div>';
             
       if (captcha){
         text+='<div class="abstand pt10 pb10"></div>';
  
         text+='<div class="no_dist inline w130">';
           text+='<img class="ml10" src="'+captcha+'" />';
         text+='</div>   ';      

         text+='<div class="no_dist inline w300 mr5 mt2 right" id="captcha">';
            text+='<b>'+tr_captcha_text+':</b> <br />'; 
         text+='</div>';    

         text+='<div class="no_dist inline w100  mr10 ml10 mr5">';
           text+='<input type="text" value="" id="comment_captcha" class="w80  intxt" />';
         text+='</div>';    

       }
            
       text+='<div class="abstand pt15 mt5"></div>';
            
       text+='<div class="btnleft">';
         text+='<input id="comment_send" onClick="sendComment();" type="button" class="inbtn w150" value="'+tr_send+'" />';
         text+='<input id="comment_close" onClick="hideComment();" type="button" class="ml10 inbtn w150" value="'+tr_close+'" />';
       text+='</div>';

       text+='<div class="abstand pt5"></div>'; 
       text+='</div>';
    
 
 return text;
}
 
