var windowZoom = null;
var windowZoom_closed = false;

function openZoom(imgName,imgWidth,imgHeight) {
	windowZoom = window.open('', 'zoomWin', 'width='+imgWidth+',height='+imgHeight+'top=10,left=5,toolbar=0,menubar=0,location=0,scrollbars=0')
	windowZoom.document.write("<html><head><title>Loading Image, Please Wait...<\/title><\/head><body background='\/images\/misc_zoombg.gif' leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 text='",imgWidth,imgHeight,"'><center><a href='' onMouseOver=\"window.status='Click Image to Close'; return true\" onMouseOut=\"window.status='Click Image to Close'; return true\" onClick=javascript:window.close()><img src='",imgName,"' alt='Click to Close' border='0'><\/a><\/center><\/body><\/html>")
	if (navigator.appName == 'Netscape')
		windowZoom.window.resizeTo(imgWidth+8, imgHeight+31);
	else {
		if (navigator.appName == 'Microsoft Internet Explorer')
			windowZoom.window.resizeTo(imgWidth+8, imgHeight+49);
		else if (navigator.appName == '*')
			windowZoom.window.resizeTo(imgWidth+8, imgHeight+49);
	}
	windowZoom.document.title = "3DTrains - digital art for the pc"
	if (windowZoom_closed) {
		windowZoom_closed = false;
	}
}

function closeZoom() {
    if (windowZoom != null) {
        if (!windowZoom_closed) {
            windowZoom_closed = true;
            windowZoom.close();
        }
    }
}