function popup(imgfile, title) {
	scrWidth = screen.Width
	scrHeight = screen.Height
	wndWidth = 1
	wndHeight = 1
	xpos = parseInt((scrWidth - wndWidth) / 2)
	ypos = parseInt((scrHeight - wndHeight) / 2)
	scrollbars = "no"
/*	if (scrWidth < 1024) {
		scrollbars = "yes"

	} else {
		scrollbars = "no"
	} */

	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
	var newwin = window.open("../include/zoom.asp?image="+imgfile+"&title="+title, "zoom", wndParam)
	newwin.focus()
}

//-----------------------------------------------------------------------------------------------------------------------

function popupvideo(imgfile, title, w, h) {
	scrWidth = screen.Width
	scrHeight = screen.Height
	wndWidth = 1
	wndHeight = 1
	xpos = parseInt((scrWidth - wndWidth) / 2)
	ypos = parseInt((scrHeight - wndHeight) / 2)
	scrollbars = "no"
/*	if (scrWidth < 1024) {
		scrollbars = "yes"

	} else {
		scrollbars = "no"
	} */

	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
	var newwin = window.open("../include/zoom.asp?image="+imgfile+"&title="+title+"&width="+w+"&height="+h, "zoom", wndParam)
	newwin.focus()
}