function picpop(picUrl){
	var theImg = new Image();
	theImg.src = picUrl;
	var imgw = theImg.width;
	var imgh = theImg.height;
	
	if(imgw<100){imgw = 800};
	if(imgh<100){imgh = 600};
	
	picPop = window.open("/picpop.htm?"+picUrl, "picPop", "resizable=1,height="+ imgh +",width="+ imgw);
	if (window.focus) {picPop.focus()}
	return false;
}
