	function newWindow(info) {
	infoWindow = window.open(info, 'infoWindow', 'width=400,height=400')
	infoWindow.focus() }
	function pictureWindow(pic) {
	picWindow = window.open(pic, 'picWindow', 'width=576,height=432')
	picWindow.focus() }
	function init() {
	window.moveTo(0,0)
	window.resizeTo(screen.width, screen.height)}
