    function newWindow(popup,width,height) {
	leftpos = 0;
	if (screen) { 
		leftpos = screen.width - 375 ;     //Makes sure the browser can handle this request
	}
		popTallWindow = window.open(popup, 'popwin', 'width='+width+',height='+height+',scrollbars=yes');
		popTallWindow.focus();
}
	function photoWindow(popup) {
		leftpos = 0;
		if (screen) { 
			leftpos = screen.width - 400 ;     //Makes sure the browser can handle this request
		}
			popTallWindow = window.open(popup, 'popwin', 'width=390,height=400,scrollbars=yes,left='+leftpos+',top=50,resizable=yes');
			popTallWindow.focus();
	}
	
	function sidebarWindow(popup) {
		if (screen) { 
			leftpos = screen.width - 375 ;     //Makes sure the browser can handle this request
		}
			popTallWindow = window.open(popup, 'popwin', 'width=400,height=400,scrollbars=yes,left=350,top=40,resizable=yes');
			popTallWindow.focus();
	}

