public static function show($user)
    {
        $links = array("New Trip" => "new-trip", "My Trips" => "my-trips", "View my Profile" => "view-profile", "Log Out" => "log-out");
        ###(HTML)
        ?>
		<!DOCTYPE html>
		<html>
			<?php 
        MasterView::insertHead("/sm_project/css/Dashboard.css", "");
        ?>
			<body>
				<?php 
        MasterView::insertNav($links);
        DashboardView::insertContent($user);
        MasterView::insertFooter(null);
        ?>
			</body>
		</html>
		<?php 
        ###(ENDHTML)
    }
    public static function show($user)
    {
        $links = array("View my Profile" => "profile", "Build a Map" => "build-map", "Log Out" => "log-out");
        ###(HTML)
        ?>
		<!DOCTYPE html>
		<html>
			<?php 
        MasterView::insertHead("Dashboard");
        ?>
			<body>
				<?php 
        MasterView::insertNav($links);
        DashboardView::insertContent($user);
        MasterView::insertFooter(null);
        ?>
			</body>
		</html>
		<?php 
        ###(ENDHTML)
    }