function GetPresentation(save){
	window.scrollBy(0,-1000);
	var success = (save) ? '&success=1' : '';
	$('#TabbedPanels1-TabbedPanels1').html(load_gif);
	
	$.ajax({
		type:'POST',
		url:'company-presentation.php',
		data:'action=companyPresentation' + success,
		success: function(data){
			$('#TabbedPanels1-TabbedPanels1').html(data);
		}
	});
}
