// JavaScript Document
<!--
//Mengubah warna background yang disorot
function cOn(td){
if(document.getElementById||(document.all && !(document.getElementById))){
td.style.backgroundColor="#E7EAED";
}
}

//Mengembalikan warna background setelah tidak disorot
function cOut(td){
if(document.getElementById||(document.all && !(document.getElementById))){
td.style.backgroundColor="#ffffff";
}
}


	function confirmLogOut()
	{
		if (confirm("Are you sure to end your session?"))
			window.navigate("logout.php");
	};

-->