function makePrint(){

	var content=$('#content').html();
	var html = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="content-type" content="text/html; charset=utf-8"/><title></title><meta name="title" content=""/><meta name="keywords" content=""/><meta name="description" content=""/><link rel="stylesheet" href="http://simvol-studio.ru/style_print.css" type="text/css" media="screen, projection"/><script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js" type="text/javascript"></script></head><body><div id="wrapper"><div id="header"><div class="logo"><a href="/"><img src="http://simvol-studio.ru/images/logo.gif" alt=""/></a></div></div><!-- #header--><div id="content"><input type="button" value="Напечатать" OnClick="window.print();">'+content+'</div><!-- #content--></div><!-- #wrapper --><div id="footer"><div class="copy"><p>© 2004—2008. ООО ПКФ «Символ».<br/>Все права защищены.</p><p>Разработка сайта — <br/>интернет-агентство «<a href="">Sitko.ru</a>»</p></div><div class="contacts">Контактная информация:<br/>г. Челябинск, ул. Карла Либкнехта, 36а<br/>+7 (351) 261-04-89, 268-18-95, 8-9-222-305-346</div></div><!-- #footer --><script>$(\'.thumbs\').hide(function(){$(\'.print_v\').hide(function(){window.print()})});</script></body></html>';

	var my_window = window.open('', 'window', 'scrollbars=1, toolbar=0,width=800');
	my_window.document.open();
	my_window.document.write( html );
	my_window.document.close();	
	
}

