function map_save(userid, siteid){
	
	var street = $('#map_street').val(); 
	var plz = $('#map_plz').val(); 
	var ort = $('#map_ort').val(); 

	$.ajax({
		url		:	"/map/save",
		type	: 	"POST",
		data	:	({
			userid		: userid,
			siteid		: siteid,
			street		: street,
			plz			: plz,
			ort			: ort,
			use_ajax	: true,
			showWindow	: true
		}),
		datatype: 'html',
		success : function(data){
			$('body').html(data);
		}
	})
}
