<html>
 
 
<?
 
    /*
 
     *    This is the pop up window page of the Image Pop Up Class.
 
     */
 
    require ('imgpopup.class.php');    
 
 
?>
 
 
<head>
 
<title>Image Pop Up Window</title>
 
<meta name="generator" content="Image Pop Up Class">
 
</head>
 
 
<body bgcolor="#ffffff" leftmargin="0" topmargin="0">
 
 
<?
 
    if (isset ($file)){
 
        $img = new ImgPopUp ($file);
 
        echo $img->ImgTag ();
 
    }
 
?>
 
 
</body>
 
 
</html>
 
 
 |