function Print(title)
{
	var icerik = document.getElementById('scrolldiv_content').innerHTML;
	var win = window.open('','','');
	win.document.write('<title>' + title + '</title>');
	win.document.write('<style media="print" type="text/css">.resimPrint{display:block}.resim{display:none}</style><link rel="stylesheet" type="text/css" href="/style/print.css" />');
	win.document.write(icerik.replace(/display.*:*.none[^;]*/gi, '').replace(/<h2>/gi, '<br clear="all"/><h2>'));
	if (document.all)
	{
		win.document.write('<script type="text/javascript">window.onload = function(){window.focus();window.print();window.close();}</script>');
		win.window.location.reload();
	}
	else
	{
		win.window.print();
		win.window.close();
	}
}