function showOverlay(){
	$("div#overlay-content div").html("<img src=\"/images/loading.gif\" alt=\"Bitte warten...\" id=\"loading\"/>");
	$("div#overlay").show();
}

function showPSFinder(params){
	showOverlay();
	$.ajax({
		type: "post",
		cache: false,
		url: "/app/order.do",
		data: params,
		dataType: "html",
		success: function(data){
			$("div#overlay-content div").html(data);
		}
	});
}

$(function(){

	$("span#close").click(function(){
		$("div#overlay").hide();
	});

});
