$(document).ready(function(){
	$('a[rel="print"]').click(function(){
		var img=this.id=='print'?'scheme1.JPG':'scheme2_4.png';
		wnd=window.open('','','width=550,height=500,status=0,toolbar=0,menubar=0,scrollbars=0');
		wnd.document.open();
		wnd.document.write('<html style="height:500px"><head></head><body style="text-align:center;" '+($.browser.opera?'onload="window.print(); window.close();"':'')+'><img  src="/spawimages/'+img+'"></body></html>');
		wnd.window.print();
		wnd.document.close()
		$.browser.opera?'':wnd.window.close();
		return false;
	});
});
