
$(document).ready(function()
	{
		
	}
);



function printVersion()
{
	var txt = $("#leftColl").html();
	var title = document.title
	var url = document.location.href;

	var win = window.open();

	with(win.document)
	{
		open();
		write('<html><head><title>');
		write(title);
		write('</title>');
		write('<link rel="stylesheet" type="text/css" media="all" href="/_css/printversion.css" />');
		write('</head><body>');
		write('<div id="header">');
		write('<div id="url">'+ url +'</div>');
		write('<div id="contact">');
		write('<b>Санкт-Петербург:</b> (812) 322-58-08, (812) 322-58-09, (812) 322-58-10, Ул. Жуковского, д. 29, Офис 17 <br />');
		write('<b>Новосибирск:</b> (383) 201-15-25, (383) 220-19-06 Ул. Фрунзе, д. 5, Офис 439  <br />');
		write('<b>E-mail:</b> Info@iqconsultancy.ru ');
		write('</div></div>');
		write(txt);
		write('</body></html>');
		close()
	}
}


