<!-- Begin hiding JavaScript

function report_window(image, width, height) {         // Pop-up Window function.
     // Add extra pixels to the width and height.
     width = width + 20;
     height = height + 20;

     // If window open, resize to new dimentions.
     if (window.popup_window && !window.popup_window.closed) {
         window.popup_window.resizeTo(width, height);  }

     // Set the window properties.
     var window_specs = "location=no, scrollbars=yes, menubar=yes, toolbar=no, resizable=yes, width=" + width + ", height=" + height + "";

     // Set the URL.
     var url =  image ;

     // Create pop-up window.
     popup_window = window.open(url, "ReportWindow", window_specs);
     popup_window.focus();
}

function selection_window(image, width, height) {         // Pop-up Window function.
     // Add extra pixels to the width and height.
     width = width + 20;
     height = height + 20;

     // If window open, resize to new dimentions.
     if (window.popup_window && !window.popup_window.closed) {
         window.popup_window.resizeTo(width, height);  }

     // Set the window properties.
     var window_specs = "location=no, scrollbars=yes, menubar=no, toolbar=no, resizable=yes, width=" + width + ", height=" + height + "";

     // Set the URL.
     var url =  image ;

     // Create pop-up window.
     popup_window = window.open(url, "SelectWindow", window_specs);
     popup_window.focus();
}

function create_window(image, width, height) {         // Pop-up Window function.
     // Add extra pixels to the width and height.
     width = width + 20;
     height = height + 60;

     // If window open, resize to new dimentions.
     if (window.popup_window && !window.popup_window.closed) {
         window.popup_window.resizeTo(width, height);  }

     // Set the window properties.
     var window_specs = "location=no, scrollbars=no, menubar=no, toolbar=no, resizable=yes, width=" + width + ", height=" + height + "";

     // Set the URL.
     var url = "Album/image_view.php?image=" + image + "";

     // Create pop-up window.
     popup_window = window.open(url, "PictureWindow", window_specs);
     popup_window.focus();
}

function login_window(image, width, height) {         // Pop-up Window function.
     // Add extra pixels to the width and height.
     width = width + 20;
     height = height + 20;

     // If window open, resize to new dimentions.
     if (window.popup_window && !window.popup_window.closed) {
         window.popup_window.resizeTo(width, height);  }

     // Set the window properties.
     var window_specs = "location=no, scrollbars=no, menubar=no, toolbar=no, resizable=yes, width=" + width + ", height=" + height + "";

     // Set the URL.
     var url = "" + image + "";

     // Create pop-up window.
     popup_window = window.open(url, "LoginWindow", window_specs);
     popup_window.focus();
}

// (C) 2001 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header
function closeMe(){
     var howLong = 3000;
     t = null;

     t = setTimeout("self.close()",howLong);
}

// End hiding JavaScript -->
