
if (document.images) {
var myWindow = 1;
//var winInit = false;
function doWindow(theURL, theWidth, theHeight, wantScrollbar, wantStatusbar, wantResizable) {
if (myWindow.closed == null || myWindow.closed == true) {
//	winInit = true;
if (!wantScrollbar) wantScrollbar = "no";
if (!wantStatusbar) wantStatusbar = "no";
if (!wantResizable) wantResizable = "yes";
myWindow = window.open(theURL,'bigPic','width=' + theWidth + ',height=' + theHeight + 'scrollbars=' + wantScrollbar + ',status=' + wantStatusbar + ',resizable=' + wantResizable);
} else {	
myWindow.resizeTo(theWidth, theHeight);
myWindow.location.href = theURL;
}
myWindow.focus();
myWindow.document.close();
}
}
