function SeeMap(where) {
  newwindow = window.open(where,"ViewMap","resizable=1,scrollbars=1,width=500,height=575");
	newwindow.focus();
	}

function OpenWindow(dataBase,field,value) {
	if (dataBase == "addbook"){
		url = "http://sco.wisc.edu/references/addbook.php?" + field + "=" + value;
		newwindow = window.open(url, "refwindow", "resizable=1,scrollbars=1,width=430,height=320");
		newwindow.focus();
		}
	if (dataBase == "glossary"){
		url = "http://sco.wisc.edu/references/glossary.php?" + field + "=" + value;
		newwindow = window.open(url,"refwindow","resizeable=1,scrollbars=1,toolbar=1,width=430,height=320");
    newwindow.focus();
    }
	}	

function linkpage(whichpage) {
  whichindex = whichpage.selectedIndex;
  whichone = whichpage.options[whichindex].value;
  window.location.href = whichone;
  }


