 
$(document).ready(function () {

	 
	 
	

});	



function getKok(afmID)
	{
		$.ajax({
			url: 'webservices/kok.asp',
			type: 'post',
			data: {afm: afmID},
			cache: 'false',
			dataType: 'html',
			
			 
			timeout: 1000,
			error: function(){
				alert('Error loading XML document');
			},
			success: function(xml){
				$('#results').html(xml);
			}
		});
	
			
			
	}
 


function printWin()
{
	
	try {
		window.print();
	} catch(e)
	{
		alert(e);
	}

}