function popupImg(url, width, height)
{
	width = width + 40;
	height = height + 40;
	window.open(url,'','status=0,scrollbars=1,width='+width+',height='+height+',resizable=1');
}

