function imgpopup(obj,w,h)
{	
	tscroll='no';
	if (w > 780) 
	{
		tscroll='yes';
		w+=20;
	}

	if (h > 590) 
	{
		tscroll='yes';
		h+=20;
	}

	sour = "img.php?img="+obj;	
	window.open(sour, '_blank', 'scrollbars='+tscroll+',width='+w+',height='+h);
}
