<!-- new window script

/* pop-up window for pictures dimension of 830 by 600
   note that varcon is a variable parameter which will contain the name of the page
*/
leftPos = 0
if (screen) {
	leftPos = screen.width/2 - 400
}
function picwindow(varcon) {
	pageName = varcon
	winName = "Win"
	myWindow = window.open(pageName, winName, "width=830,height=600,left="+leftPos+",top=10,scrollbars=yes")
	myWindow.focus()
}
// End window script -->

