function ShowWindow(n, window_name, w, h)
 {
  var par = "'titlebar=no, toolbar=no, location=no, status=no, menubar=no,scrollbars=no, resizable=no,width=" + w + ",height=" + h + "'";
  window.open(n, window_name, par);
 }

 
 function repy_comment(commentary, title, i_id, id_order, id_client_sender, id_client_recipient)
 {
  if (commentary == '') 
  { 
   alert('    !'); 
   return false; 
  } 
 
  if (commentary.length < 2) 
  { 
   alert('   .'); 
   return false; 
  }
 
  if (commentary.length >= 3000) 
  { 
   alert('   .      3000 .'); 
   return false; 
  }  
  
  var f = 'forma_reply_'+i_id+'';
  
  document.forms[f].submit();
  
  //xajax_reply_commentary_order(i_id, id_order, id_client_sender, id_client_recipient, commentary, title);
 }
