function openPopup(URL,w,h){
	childwindow = window.open(URL, 'win', 'resizable=1,toolbar=1,location=1,statusbar=0,menubar=0,scrollbars=1,width='+w+',height='+h);
 	childwindow.focus()
	childwindow.opener = window.self
	
}



// SETUPS:
// ===============================
// Set the horizontal and vertical position for the popup

PositionX = 2;
PositionY = 2;

// Set these value approximately 20 pixels greater than the
// size of the largest image to be used (needed for Netscape)

defaultWidth  = 1000;
defaultHeight = 1000;

// Set autoclose true to have the window close automatically
// Set autoclose false to allow multiple popup windows

var AutoClose = true;


function popImage(imageURL,imageTitle){
	imgWin=window.open("showImage.php?url=" + imageURL + "&title=" + imageTitle,"imgWindow","scrollbars=no,resizeable=1,toolbars=1,width=600,height=600")
}



 