var printWin;
		
function openPrintWin(address) {
  if (!printWin || printWin.closed) {
    printWin = window.open(address, 'printWin', 'status=no, toolbar=no, scrollbars=yes, titlebar=yes, menubar=yes, resizable=yes, width=680, height=520, directories=no, location=no');
  } else {
  	printWin.location = address;
  	printWin.focus();
  }
}

function sendComment() {
  var message = new Array();
  
  if ($.trim($("[name=comment_name]").val()) == '') message.push("Вы не указали ваше имя, представьтесь");
  if ($.trim($("[name=comment_text]").val()) == '') message.push("Необходимо заполнить текст комментария");
  
  if (message.length > 0) {
    alert(message.join('\n'));
  } else {
    $(".formTable .button").attr("disabled", "disabled");
    da_sendComment(xajax.getFormValues("commentform"));
    $(".void").val('');
  }
  return false;
}
