public static function show($map)
    {
        $links = array("My Trips" => "my-trips", "View my Profile" => "view-profile", "Log Out" => "log-out");
        ###(HTML)
        ?>
		<!DOCTYPE html>
		<html>
			<?php 
        MasterView::insertHead("", "/sm_lab5/js/Map.js");
        ?>
			<body>
				<?php 
        MasterView::insertNav($links);
        MapView::insertContent($map);
        MasterView::insertFooter(null);
        ?>
			</body>
		</html>
		<?php 
        ###(ENDHTML)
    }
    public static function show($map)
    {
        $links = array("Home" => "home", "View my Profile" => "profile", "Log Out" => "log-out");
        ###(HTML)
        ?>
		<!DOCTYPE html>
		<html>
			<?php 
        MasterView::insertHead(null);
        ?>
			<body style="height:100%">
				<?php 
        MasterView::insertNav($links);
        MapView::insertMap($map);
        MapView::insertContent();
        MasterView::insertFooter(null);
        ?>
			</body>
		</html>
		<?php 
        ###(ENDHTML)
    }