function doPopup($root, $img, $thb, $title, $alt, $bkg, $text='', $css='') { $_img = $root . $img; $_thb = $root . $thb; if (!file_exists($_img)) { return "Cannot open file $_img !"; } if (!file_exists($_thb)) { return "Cannot open file $_thb !"; } $img_size = getimagesize($_img); $thb_size = getimagesize($_thb); $win_w = $img_size[0] + 50; $win_h = $img_size[1] + 60; $popup = $root . 'popup.php'; $js = ""; return $js; } ?>