// JavaScript Document

function bukapenagkeb(form,parameter){
	
	 $('#loadingpenangkeb').fadeOut('fast');
	$('#textpenangkeb').html("");
	$('#penangkeb').fadeIn('fast',function(){
										   
										   
										   
										  
				$.ajax({
		   type :"POST",
		   url :form,
		   data:"shield=" + parameter,
		   success : function(hasil) {
			  $('#loadingpenangkeb').fadeOut('fast', function(){
															 
															 
				$('#textpenangkeb').html(hasil);											 
															 })  
			   
			   
			   }
		   
		   
		   });
						  
$('#isipenangkeb').fadeIn('fast');		  
						   
										  });
	
	
	
}

function tutuppenangkeb(){
	
	$('#isipenangkeb').fadeOut('fast',function(){
	
	$('#penangkeb').fadeOut('fast');
	
											  });
}


function openform(form){
	var form = "#"+ form;
	$(form).fadeIn('slow');	
}

function tutupform(form){
	var form = "#"+ form;
	$(form).fadeOut('slow');	
}

function openformwithpara(form,para,nama,hidenfield){
	
	var form = "#"+ form;
	$('#nokursi').html(nama);
	
	document.getElementById(hidenfield).value=para;
	$(form).fadeIn('slow');	
}
