//Make a window pop-ip function
function popup(){
Site = 'http://www.charltonrovers.co.uk/Images/MiniSoccerapplicationform09v2.htm';
width = 420;
height = 460;
var window_specs = "height=" + height + ",width=" + width + ",scrollbars=yes,resizable=yes,status=yes,toolbar=no,menubar=no,location=no";

//Make this available when required...
// *********** put back in when required ********* window.open(Site,"PopUp", window_specs);
} //end of function.

//Make a window pop-up function
function create_window(image, width, height) {

//Set the link name - website or image name
//image = 'http://www.charltonrovers.co.uk/Charlton_Rovers_FACup.htm';

//Add some pixels to the width & height
width = width+20;
height = height + 40;

//If the window is already open, resize it to the new dimension
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, menubars=no, toolbars=no, resizeable=yes, left=0, top=0, width=" + width + ",height=" + height;

//Set the URL
var url = "image_window.php?image=" + image;

//Create the pop-up window
popup_window = window.open(url, "PictureWindow", window_specs);
popup_window.focus();
} //end of function.
