function showChildNodes(elmParent) {
	var arrChildren = elmParent.getElementsByTagName("ul");
	var elmChildMenu = arrChildren[0];
	strChildDisplay = elmChildMenu.style.display;
	//Change CSS
	var strCurrentClass = elmParent.className;
	var strNewClass;
	switch(strCurrentClass) {
		case "expandable":
			strNewClass = "expanded";
			break;
		case "expanded":
			strNewClass = "expandable";
			break;
		//First in list
		case "expandablefirst":
			strNewClass = "expandedfirst";
			break;
		case "expandedfirst":
			strNewClass = "expandablefirst";
			break;
		//Last in list
		case "expandablelast":
			strNewClass = "expandedlast";
			break;
		case "expandedlast":
			strNewClass = "expandablelast";
			break;
	}
	if (!blnDoNotClose) {
		elmParent.className = strNewClass;
		//Change display property
		if (strChildDisplay == "none" || strChildDisplay == "") elmChildMenu.style.display = "block";
		else elmChildMenu.style.display = "none";
	}
}

var blnDoNotClose = false;
function goToURL(strURL) {
	blnDoNotClose = true;
	document.location.href = strURL;
}

function logout()
{ 
	alert("For security purpose, please be informed that your current browser will be closed.");
	window.close();
}


function onload()
{ 
	alert("16 October 2009 \n\n In preparation of the launch of ISIS, a blackout period is scheduled from 16 October 2009, 6pm to 9 November 2009 (refer Provost Circular No. 3 of AY2009/10). During this blackout period, the following functions will be affected: \n\n All student data will only be accurate as at 16 October 2009, 6pm."); 
}




