MyArray = new Array();
MyArray[1] = "http://btech.eng.nus.edu.sg/BTech/Information/bbackground.html";
MyArray[2] = "http://btech.eng.nus.edu.sg/BTech/Information/bmilestones.html";
MyArray[3] = "http://btech.eng.nus.edu.sg/btech/Information/bstaff.html";
MyArray[4] = "http://btech.eng.nus.edu.sg/btech/Information/badvise.html";
MyArray[5] = "http://www.eng2.nus.edu.sg/btech/staff/feedbacklist-r.html";
MyArray[6] = "http://btech.eng.nus.edu.sg/BTech/staff/Calendar.htm";
MyArray[7] = "http://www.eng2.nus.edu.sg/btech/staff/cipher-r.html";
MyArray[8] = "http://www.eng2.nus.edu.sg/btech/staff/emailEE-r.html";
MyArray[9] = "http://www.eng2.nus.edu.sg/btech/staff/emailME-r.html";
MyArray[10] = "http://www.eng2.nus.edu.sg/btech/staff/emailCHE-r.html";
MyArray[11] = "http://www.yellowpages.com.sg/bizsearch.shtml";

function View(id) {
self.name = "middle"; // names current window as "middle"
var windowprops = "toolbar=0,location=0,directories=0,status=0, " +
"menubar=0,scrollbars=1,resizable=0,width=600,height=300,top=200,left=150";
OpenWindow = window.open(MyArray[id], "remote", windowprops); // opens remote control
}

var TREE_NODES = [

	['Information', null, null,
		['Background', 'Javascript:View(1)', null],
		['Milestones', 'Javascript:View(2)', null],
		['Staff', 'Javascript:View(3)', null],
		['Advisory Committee', 'Javascript:View(4)', null],
	],
	['Administrative Staff Resource', null, null,
		['Alumni Email/Mail Retrieval (Restricted)', null, null,
			['Electronics Engineering', 'Javascript:View(8)', null],
			['Mechanical/Manufacturing Engineering', 'Javascript:View(9)', null],
			['Chemical Engineering', 'Javascript:View(10)', null],
		],
		['Suggestions/Feedback Listing (Restricted)', 'Javascript:View(5)', null],
		['Calender', 'Javascript:View(6)', null],
		['Encoder (Restricted)', 'Javascript:View(7)', null],
		['Yellow Pages', 'Javascript:View(11)', null],
	],
];


