// JavaScript Document

<!-- Hide from old browsers
	
//--Spawn small window
	
		leftpos = 0
		if (screen) {
			leftpos = screen.width-900
			}
			
//-- launch tour window

		function openWindow(tour) {
		portWindow = window.open(tour, "tourWin", "width=320, height=256, menubar=no, toolbar=no, directories=no, status=no, scrollbars=no, left="+leftpos+",top=250")
		portWindow.focus()
	}
	

//-- launch images window

		leftpos2 = 0
		if (screen) {
			leftpos2 = screen.width-900
			}

		function openWindowImages(url) {
		portWindow = window.open(url, "imageWin", "width=385, height=370, menubar=no, toolbar=no, directories=no, status=no, scrollbars=no, left="+leftpos2+",top=250")
		portWindow.focus()
	}

