var dropName = 
[
"Annual Report",
"Anesthesiology",
"Beckman Research Institute",
"Blood &amp; Platelet Donor Center",
"Bone Marrow Transplantation",
"Breast Center",
"Cancers &amp; Treatments",
"Calendar of Events",
"Cause Related Marketing",
"Center for Biomedicine &amp; Genetics",
"City of Duarte-City of Hope Golf Tournament",
"Clinical Cancer Genetics",
"Clinical Molecular Diagnostic Laboratory",
"Clinical Trials",
"Community Resources Information",
"Comprehensive Cancer Center",
"Continuing Medical Education",
"CRIIS Knowledge Net",
"Diabetes &amp; Endocrinology",
"Donate Online",
"DNA Peptide Synthesis Facility",
"Employment - Medical/General",
"Employment - Research",
"Endocrinology &amp; Diabetes",
"General Clinical Research Center",
"Gift Planning",
"Gifts that Give Hope",
"Graduate School in Biological Sciences",
"Graff Library",
"Guest Services",
"Guzner Pediatrics Symposium",
"Hematology",
"HLA Lab",
"Human Genetics",
"Human Resources",
"Immunology",
"Levine Symposium",
"Lung Cancer Screening Project",
"Managed Care",
"MDM-2 Mutational Genetics",
"Molecular Biology",
"Molecular Medicine",
"National Gene Vector Laboratory",
"National Islet Cell Resources Program",
"Neuro-Oncology Department",
"Pain Resource Center",
"Pathology Consultation Services",
"Press Releases",
"Prostate Cancer Center",
"Radiation Oncology",
"Radiation Therapy, School of",
"Radioimmunotherapy",
"Regional Offices",
"Rehabilitation Services",
"Research Report",
"Research Services &amp; Professional Education",
"Southern California Islet Consortium",
"Support Groups at City of Hope",
"Surgical Services",
"So.Cal. Cancer Pain Initiative",
"Star Trial",
"Surgical Services",
"Technology Development",
"Urology",
"Virology",
"Volunteer Services",
"Walk for Hope",
"Women's Health Center"
]

var dropLocs = 
[
"http://www.cityofhope.org/annualreport",
"http://www.cityofhope.org/anesthesia",
"http://bricoh.coh.org",
"http://www.cityofhope.org/BloodDonorCenter/default.asp",
"http://bmt.cityofhope.org",
"http://www.cityofhope.org/breastcenter",
"http://www.cityofhope.org/ccc/db/",
"http://www.cityofhope.org/calendar",
"http://www.cityofhope.org/crm",
"http://www.cityofhope.org/ott/cbg.asp",
"http://www.cityofhope.org/GolfTournament/",
"http://www.infosci.coh.org/ccgp/default.asp",
"http://www.cityofhope.org/cmdl",
"http://clinicaltrials.coh.org/default.asp",
"http://www.infosci.coh.org/community",
"http://www.cityofhope.org/ccc",
"http://www.cityofhope.org/cme",
"http://www.infosci.coh.org",
"http://www.cityofhope.org/diabetes",
"https://www.cityofhope.org/donate",
"http://www.infosci.coh.org/oes/",
"http://www.cityofhope.org/cohjobs/",
"http://researchcareers.coh.org",
"http://www.cityofhope.org/diabetes",
"http://www.infosci.coh.org/gcrc/",
"http://www.cityofhope.org/giftplanning",
"http://www.cityofhope.org/philanthropy/gifts/default.asp",
"http://www.cityofhope.org/gradschool/",
"http://library.coh.org",
"http://www.cityofhope.org/GuestServices/",
"http://www.cityofhope.org/GuznerSymposium/default.asp",
"http://bmt.cityofhope.org",
"http://www.cityofhope.org/hla",
"http://www.cityofhope.org/humgen",
"http://jobs.coh.org",
"http://www.cityofhope.org/immunology",
"http://levinesymposium.coh.org/",
"http://www.cityofhope.org/lungscreen",
"http://www.cityofhope.org/managedcare",
"http://www.infosci.coh.org/mdm2",
"http://www.cityofhope.org/bricoh/mol_biology/default.asp",
"http://www.cityofhope.org/bricoh/mol_medicine/default.asp",
"http://www.cityofhope.org/ngvl",
"http://icr.coh.org",
"http://www.cityofhope.org/cno",
"http://prc.coh.org",
"http://www.cityofhope.org/pcs/",
"http://www.cityofhope.org/presspass",
"http://www.cityofhope.org/prostate",
"http://www.cityofhope.org/radonc",
"http://www.cityofhope.org/radther",
"http://www.cityofhope.org/rit",
"http://www.cityofhope.org/allabouthope/nat_offices.asp",
"http://www.cityofhope.org/rehabilitation",
"http://bricoh.coh.org/research_report/",
"http://resadmin.coh.org",
"http://scic.coh.org",
"http://www.cityofhope.org/support",
"http://www.cityofhope.org/surgery",
"http://www.cityofhope.org/sccpi",
"http://www.cityofhope.org/startrial",
"http://www.cityofhope.org/surgery",
"http://www.cityofhope.org/ott",
"http://www.cityofhope.org/urology",
"http://www.cityofhope.org/bricoh/virology/default.asp",
"http://www.cityofhope.org/volunteer",
"http://www.cityofhope.org/walkforhope",
"http://www.cityofhope.org/womenshealthcenter",
]

function makeDrop()
	{
	document.writeln("<option selected value='#'>Select COH Sites / Departments</option>")
	var i = 0;
	do
		{
		document.writeln("<option value=" + dropLocs[i] + ">");
		document.writeln(dropName[i] + "</option>");
		}
	while (++i < dropName.length);
	}

function go()
	{
	self.location.href=document.departments.drop.options[document.departments.drop.selectedIndex].value
	}
