// JavaScript Document

function SelAll_Daftar_Penilaian() {
	with(document.fdaftar_penilai) {
			for(i=0;i<elements.length;i++) {
				thiselm = elements[i];
				if(thiselm.name.substring(0,5) == 'pilih')
				   thiselm.checked = !thiselm.checked
			}
	
		}	
	
}


function Logout() {
	var r=confirm("Anda pasti mahu log keluar ?");
	if (r) {
		window.location="handle.php?p=DoLogout";
	}
}