function popup(imgfile, title) {
	if (document.all) {
		scrWidth = screen.Width
		scrHeight = screen.Height
	}else {
		if (document.layers||document.getElementById) {
			scrHeight = screen.Height
			scrWidth = screen.Width
		}
	}

	wndWidth = 1
	wndHeight = 1
	xpos = parseInt((scrWidth - wndWidth) / 2)
	ypos = parseInt((scrHeight - wndHeight) / 2)
	scrollbars = "no"
/*	if (scrWidth < 1280) {
		scrollbars = "yes"

	} else {
		scrollbars = "no"
	} */
    document.cookie = 'screenWidth='+(scrWidth - 4)
    document.cookie = 'screenHeight='+(scrHeight - 23)

	wndParam = "titlebar=no,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars="+scrollbars+",width="+wndWidth+",height="+wndHeight+",top="+ypos+",left="+xpos
	window.open("../include/zoom.asp?image="+imgfile+"&title="+title, "zoom", wndParam)
}