
	function Img(i_url, i_width, i_height)
	{
		if(i_height > (screen.height - 150))
		{
			i_width+=20;
		}

		window.open(i_url, '_blank', 'width=' + (i_width + 40) + ',height=' + (i_height + 20) + ',scrollbars=1,resizable=yes');
	}
