// +---------------------------------------------------------------------+
// | MEDIAVISIE.NL - CONTACT JAVASCRIPTS                                 |
// +---------------------------------------------------------------------+
// | Copyright © 2010, Mediavisie B.V., Enschede                         |
// |                                                                     |
// | Alle rechten voorbehouden.                                          |
// | Niets uit deze uitgave mag worden gekopieerd, gepubliceerd en/of    |
// | verspreid in welke vorm dan ook, zonder voorafgaande toestemming    |
// | van de uitgever.                                                    |
// +---------------------------------------------------------------------+

function domaindetails(domainkey) {
	// Zet de loadimage.		
	$('#pageAction').html('<img src="./img/loading_dark.gif" alt="" /> Bezig met laden...');
		
	// Send an Ajax request to email the form.
	$.ajax({
	  url: './loadobject.php',
	  //dataType: 'json',
	  data: '&command=process_domeindetails&domainkey='+domainkey,
	  success: function(data) {
		$('#pageAction').html(data);
	  }
	});
}
	
function doDomainCheck(domein, ext) {
	// Zet de loadimage.		
	$('#domeinResult'+ext).html('<img src="./img/loading_dark.gif" alt="" /> Gegevens ophalen&hellip;');
		
	// Send an Ajax request to email the form.
	$.ajax({
	  url: './loadobject.php',
	  //dataType: 'json',
	  data: '&command=process_domain&domain='+domein+'&ext='+ext,
	  success: function(data) {
		$('#domeinResult'+ext).html(data);
	  }
	});
}
