// JavaScript Document

function goSite()
{
  var  selection = 1
  var URLStr
  selection=document.linkForm.site.value;
	switch(selection) {
  	case "1":
		URLStr="http://vortex.cs.wayne.edu/Projects.html"
		break
	case "2":
		URLStr="http://genomes.wayne.edu"
		break
	case "3":
		URLStr="http://www.hgmp.mrc.ac.uk/Software/EMBOSS/Jemboss/index.html"
		break
	case "4":
		URLStr="http://ncbi.nlm.nih.gov/entrez/query.fcgi?db=PubMed"
		break
	case "5":
		URLStr="http://ncbi.nlm.nih.gov"
		break
	default:
		URLStr="http://bioinformatics.wayne.edu"
	break
	}
	window.location=URLStr
}
function goExternalSite(URLStr,title) {
	window.open(URLStr);
}
