function printPageId(id){
  if(id != "")
      {
    var q = document.getElementById(id).innerHTML;
    var printWind = window.open('','MyPrint','width=700, height=550, scrollbars=1, toolbar=0');
        printWind.document.open();
	printWind.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head>');
	printWind.document.write('<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />');
	printWind.document.write('<title>Контактная информация</title>');
        printWind.document.write('</head><body style="margin-left:10px; margin-right:10px;">');
        printWind.document.write('<h3>Контактная информация компании "Квадро-Диск"</h3>');
        printWind.document.write(q);
	printWind.document.write('<br />');
	printWind.document.write('<b>На заметку</b>');
	printWind.document.write('<textarea style="width:100%; height:100px;"></textarea>');
	printWind.document.write('<div align="center" style="margin-top:5px;"><input onclick="window.print(); window.close();" type="button" value="Распечатать" /> <input onclick="window.close();" type="button" value="Закрыть" /></div>');
	printWind.document.write('</body></html>');
        printWind.document.close();
    };	
};
