MyArray = new Array();
MyArray[1] = "http://btech.eng.nus.edu.sg/btech/Information/bgeneral.html";
MyArray[2] = "http://btech.eng.nus.edu.sg/btech/Information/badmission_faq.html";

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 for Applicants', null, null,
		['General', 'Javascript:View(1)', null],
		['Frequently-Asked Questions', 'Javascript:View(2)', null],
	],

	['Application Forms', null, null,
		['Electronics Engineering', 'http://www.eng9.nus.edu.sg/btechadm/eceindex.htm', null],
		['Mechanical/Manufacturing Engineering', 'http://www.eng9.nus.edu.sg/btechadm/meindex.htm', null],
		['Chemical Engineering', 'http://www.eng2.nus.edu.sg/btechche/', null],
	],

];


