function OpenPopup(fname,w,h)
{
	xp = (screen.availWidth - w) / 2;
	yp = (screen.availHeight - h) / 2;
	t = 'width='+w+',height='+h+',scrollbars=no,toolbar=no,location=no,status=no,resizable=no,screenX='+xp+',screenY='+yp+',left='+xp+',top='+yp;
	window.open(fname+'\&amp;title=Dogs','Img',t);
}
