<!-- new window script

/* pop-up windows follows
   note that varcon is a variable parameter which will contain the name of the page
*/
leftPosWin2 = 0
if (screen) {
	leftPosWin2 = screen.width/2 - 225
}
function newwindow(varcon) {
	pageName = varcon
	winName = "Win2"
	myWindow = window.open(pageName, winName, "width=450,height=350,left="+leftPosWin2+",top=150")
	myWindow.focus()
}
// End window script -->

