
function imagepop( bloomdate, name, width, height ) {
	var strURL	= "../image_pop.php?n=" + name + "&d=" + bloomdate ;
	var xpad = 65 ;
	var ypad = 300 ;

	var numWidth	= width ;
	var numHeight	= height ;
	var strOptions	= ",resizable=yes,scrollbars=yes,toolbar=no,location=no,menubar=no,status=no,screenX=20,screenY=20" ;
	var strParam	= "width=" + numWidth + ",height=" + numHeight + strOptions ;
	image_window	= window.open (strURL, "image_window", strOptions);
	image_window.resizeTo( (numWidth+xpad), (numHeight+ypad) ) ;
	setTimeout("window.image_window.focus();", 1) ;
}


