// JavaScript Document

function goSite()
{
  var selection = 1
  var URLStr
  selection=document.linkForm.site.value;
	switch(selection) {
  	case "1":
		URLStr="http://www.genetics.wayne.edu/Calendar/calendar.htm"
		break
	case "2":
		URLStr="http://www.genetics.wayne.edu/Directory/directory.htm"
		break
	case "3":
		URLStr="http://www.genetics.wayne.edu/Research/research.htm"
		break
	case "4":
		URLStr="http://www.genetics.wayne.edu/Education/education.htm"
		break	
	case "5":
		URLStr="http://bioinformatics.wayne.edu"
		break
	case "6":
		URLStr="http://www.agtc.wayne.edu/"
		break
	case "7":
		URLStr="http://proteome.wayne.edu/services.html"
		break
	case "8":
		URLStr="http://www.genetics.wayne.edu/Software/software.htm"
		break
	case "9":
		URLStr="http://www.med.wayne.edu"
		break
	case "10":
		URLStr="http://www.wayne.edu"
		break
	case "11":
		URLStr="http://ncbi.nlm.nih.gov/entrez/query.fcgi?db=PubMed"
		break
	case "12":
		URLStr="http://ncbi.nlm.nih.gov"
		break
	default:
		URLStr="http://www.med.wayne.edu"
	break
	}
	window.location=URLStr
}
function goExternalSite(URLStr,title) {
	window.open(URLStr);
}

function googleSearch(searchString){
        var URLString='http://www.google.com/search?hl=en&ie=UTF-8&oe=UTF-8&q=site%3Awww.genetics.wayne.edu+'+searchString;
        //alert(URLString);
        document.location=URLString;
}
