// JavaScript Document By : opick@amikom.ac.id 
// fungsi on change list pts
function tampil_pts(id)
{
	document.location.href='index1.php?p=pts&t=propts&id=' + id;
	//document.location.href='pts-profile.php';
}

function daftar_pts(id)
{
	document.location.href='index1.php?p=listpts&j=' + id;
}

function daftar_admisi(id)
{
	document.location.href='index1.php?p=admisi&j=' + id;
}
// end ...


//------------------------------------------
//			Cek Form Pencarian
//------------------------------------------
function cekCari(){
	var text=document.fCari.tCari.value;
	
	if(text==""){
		alert("Kata kunci masih kosong!")
		document.fCari.tCari.focus()
		return false
	}
	
}


// FORM POLLING
function cekFormPoll(){
	var T_Tanya=document.FPoll.tpertanyaan.value;	
	if(T_Tanya==""){
		alert("Pertanyaan masih kosong!")
		document.FPoll.tpertanyaan.focus()
		return false
	}
}

// MESSAGE CONFIRM
function confirm_entry(msg,url){
	if (confirm(msg)){ 
		document.location.href=url;
		return true;
	}
}