function na_open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable)
{
  toolbar_str = toolbar ? 'yes' : 'no';
  menubar_str = menubar ? 'yes' : 'no';
  statusbar_str = statusbar ? 'yes' : 'no';
  scrollbar_str = scrollbar ? 'yes' : 'no';
  resizable_str = resizable ? 'yes' : 'no';
  window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
}

function print_in_window(w, h){
text = document.getElementById('result').innerHTML;
printwin = open('', 'printwin',  'width='+w+',height='+h+',scrollbars=yes');
printwin.document.open();
printwin.document.writeln('<html><head><title>Дом студента</title></head><link href="http://dom-studenta.ru/template/skin/style.css" type="text/css" rel="stylesheet"><body><div style="margin: 0px 0px 0px 0px"');
printwin.document.writeln(text);
printwin.document.writeln('<center><a href="javascript:window.print();"><img src="http://dom-studenta.ru/template/skin/images/print-white.gif" alt="Отправить" border=0></a></center></body></html>');
printwin.document.close();
}


