
function getAchiev(character,realm,realmType,domain)
{
	//alert('hello');	
	var myurl = domain + "/wp-content/plugins/wowrecentachiev/ajax/get_achiev.php";
	var modurl = "character=" + character + "&realm=" + realm.replace(" ","+") + "&realmType=" + realmType;
	jQuery.ajax({
		url: myurl,
		data: modurl,
		type: "GET",
		success: function(msg)
		{
			jQuery("#achiev").html(msg);
		},
		error: function(msg)
		{
			//$("#compareArea").html("An error has occurred please try your submission again.");
		}
	});
}