		function newWin(template, id) {
			winURL = template+".php?id="+id 
			detailWindow = window.open(winURL, 'detailWin', 'location=no, width=400, height=600, toolbar=no, resizeable=no, statusbar=no, scrollbars=yes')
			detailWindow.focus
		}
		function newWin2(template, id) {
			detailWindow = window.open("", 'detailWin', 'location=no, width=400, height=600, toolbar=no, resizeable=no, statusbar=no, scrollbars=yes')
			detailWindow.focus
		}
		function newWin3(template, id, width, height) {
			detailWindow = window.open("", 'detailWin', 'location=no, width='+width+', height='+height+', toolbar=no, resizeable=no, statusbar=no, scrollbars=yes')
			detailWindow.focus
		}
