(function($) {

$.fn.imgPrint = function() {

	var image = this;
	
	if($(image).attr("tagName")!="IMG")
		return;
	
	var width = $(this).width();
	
	var height = $(this).height();
	
	var wind = window.open("","Печать","width="+ width +",height="+ height  + ",status=no,toolbar=no,menubar=no,location=no,scrollbar=0,resizable=yes");
	
	wind.document.writeln('<img src="'+image.attr("src")+'" border="0" />');
	wind.document.close();
	wind.focus();
	wind.print();
	wind.close();
	
	return false;
}
})(jQuery);

function mPagePrint(options) 
{
	var defaults = {url:'', title:'Печать', width:400, height:400};

	var opt = $.extend(defaults, options);
	
	var wind = open(opt.url ,opt.title,"width="+ opt.width +",height="+ opt.height  + ",status=no,toolbar=no,menubar=no,location=no,scrollbar=0,resizable=yes");
	
	wind.focus();		
	
	setTimeout(function(){var wnd = wind; wnd.print(); wnd.close();}, 1000);
	
	return false;
}
