<!--
function DropDown(a,b,c,d,e,f) {
	this.formName = a;
	this.selectName = b;
	this.buttonValue = c;
	this.optionNames = d;
	this.optionValues = e;
	this.response = f;
}

PickACentre = new DropDown("PickCentre", "CentreList", "Go", new Array("Select a Centre", "CAC", "CRMS", "CCF", "Help?"), new Array("", "CAC", "CRMS", "CCF", "CentreHelp"), "location.href = \"home.htm\?\"+document.PickCentre.CentreList.options[document.PickCentre.CentreList.selectedIndex].value;");

PickALinkCategory = new DropDown("PickCategory", "CategoryList", "Show", new Array("Select a Category", "Libraries", "Encyclopedias", "Journals", "Societies", "Software", "Suppliers", "Databases", "Miscellany"), new Array("", "Links&Libraries", "Links&Encyclopedias", "Links&Journals", "Links&Societies", "Links&Software", "Links&Suppliers", "Links&Databases", "Links&Miscellany"), "location=(\"home.htm?\"+document.PickCategory.CategoryList.options[document.PickCategory.CategoryList.selectedIndex].value)");

PickAPrivateDestination = new DropDown("PickPrivateDestination", "DestinationList", "Go", new Array("Select a Destination", "Discussion Forum", "Documents"), new Array("", "Forum", "Docs"), "location.href = \"home.htm\?\"+document.PickPrivateDestination.DestinationList.options[document.PickPrivateDestination.DestinationList.selectedIndex].value;");

function setLocation(where){
	window.location.href=eval(where);
}
function listItem(a,d,b,c) {
	this.url = a;
	this.target = d;
	this.altText = b;
	this.text = c;
	if (arguments.length > 4) this.Class = arguments[4];
	else this.Class = "";
	this.hasDropDown = 0;
	if (arguments.length > 5) {
		this.DropDown = arguments[5];
		this.hasDropDown = 1;
		this.showKey = arguments[6];
		}
	}
listItems = new Array(
//new listItem("SOUSCC/", "", "34th Southwestern Ontario Undergraduate Student Chemistry Conference at York", "<font color=red>34<sup>th</sup> SOUSCC</font>", "souscc"), 
new listItem("ugrad/", "", "Undergraduate degree programs, courses, etc.", "Undergraduate Program"), 
new listItem("http://www.yorku.ca/gradchem/", "", "Graduate degree programs, research facilities, courses, etc.", "Graduate Program"), 
new listItem("admin/People.htm", "", "Departmental Directory, with telephone numbers, office locations", "People"), 
new listItem("http://www.yorku.ca/gradchem/faculty/", "", "Research areas of interest, research pages", "Faculty Research"), 
new listItem("home.htm\?showCentres", "", "Links to CAC, CRMS and CCF pages", "Research Centres", "", PickACentre, 'showCentres'), 
//new listItem("home.htm\?showCentres", "", "Links to CAC, CRMS and CCF pages", "Research Centres", "alone", PickACentre, 'showCentres'), 
new listItem("Seminars/", "", "Departmental seminars", "Seminars"), 
new listItem("Alumni/Alumni.html", "", "Some of our illustrious alumni", "Eminent Alumni"), 
//new listItem("admin/Contact.htm", "", "By mail, e-mail, fax & telephone", "Contact Us", "alone"), 
new listItem("javascript:showContact()", "", "By mail, e-mail, fax & telephone", "Contact Us", ""), 
new listItem("", "", "", "<br><br><br>"), 
new listItem("NMR/NMRFacility.htm", "", "Our NMR facility at your service", "NMR Service"), 
//new listItem("admin/Positions.htm", "", "Positions within the department", "Job Postings"), 
new listItem("Games/", "", "Fun chemistry-related word search games", "Fun & Games"), 
new listItem("home.htm\?Links", "", "All kinds of useful links for chemists and chemistry students", "Links", "", PickALinkCategory, 'Links'), 
new listItem("http://www.yorku.ca/csy", "_new", "Visit the students&rsquo; organization", "Chemical Society at York"),
new listItem("home.htm\?showDestinations", "", "Links to private/internal departmental pages", "Private Area", "", PickAPrivateDestination, 'showDestinations')
);

//-->
