
function ajaxModal(ajaxurl, width)
{
	if($('#modal').length == 0)
	{
		$('<div id="modal" style="background:#fff;"></div>').appendTo('body');
	}
	$.ajax({
		type: "GET",
		url: ajaxurl,
		success: function(responsedata){$("#modal").html(responsedata)}
	});	
	$("#modal").modal({
		overlayClose:true,
		position:[($(window).height()*0.3),($('body').width()-width)/2],
		opacity:60,
		minWidth:width,
		overlayCss: {backgroundColor:"#000"}
	});
}

