var qlink = document.getElementById("quicklink");
var qlinkfm = document.getElementById("qlinkform");
addOptToList(qlink, "http://www.cityu.edu.hk/cityu/giving/index.htm", "Donation");
addOptToList(qlink, "http://www.cityu.edu.hk/cityu/events/calendar.htm", "Events");
addOptToList(qlink, "http://www.cityu.edu.hk/cityu/job/index.htm", "Job Opportunities");
addOptToList(qlink, "http://www.cityu.edu.hk/cityu/prgm/index.htm", "Academic Programmes");
addOptToList(qlink, "staffSearch", "Staff Search");
addOptToList(qlink, "http://www.cityu.edu.hk/cityu/depts/a_to_z-frame.htm", "University Departments & Offices");
addOptToList(qlink, "http://www.cityu.edu.hk/cityu/geninfo/useful_telno-frame.htm", "Useful Telephone Numbers");
qlinkfm.reset();
qlink.selectedIndex = 0;

function addOptToList(myList, url, txt){
	var newOpt = document.createElement('option');
	newOpt.text = txt;
	newOpt.value = url;
	try{
	    myList.add(newOpt, null);
	}
	catch(ex){
	    myList.add(newOpt);
	}
}


