function showStaffWindow(id){

	$.ajax({
		url		:	"/staff/new",
		type	: 	"POST",
		data	:	({
			id			: id,
			use_ajax	: true,
			showWindow	: true
		}),
		datatype: 'html',
		success : function(data){
			$('body').append(data);
			$("#window[name='staffwindow']").fadeIn();
		}
	})
}

function showStaffCompanyWindow(id){

	$.ajax({
		url		:	"/staff/newcompany",
		type	: 	"POST",
		data	:	({
			id			: id,
			use_ajax	: true,
			showWindow	: true
		}),
		datatype: 'html',
		success : function(data){
			$('body').append(data);
			$("#window[name='staffcompanywindow']").fadeIn();
		}
	})
}
