function addHomeMarker(map) {
    //var html = "<img border = 1 src = ./AISImages/PhilWalker.jpg>";
    var html = "<html><body><iframe src = AISPopUp.html width=425 height=340></body></html>";
    var home = new GLatLng(43.70473,7.3115611);
    var info = new GIcon();
    info.image = "./AISImages/Info.png";
    info.iconSize = new GSize(32, 32);
    info.iconAnchor = new GPoint(15, 15);
    info.infoWindowAnchor = new GPoint(15, 15);
    var marker = new GMarker(home,{icon:info, title : "Phil Walker\nRiviera Asset Management" });
    GEvent.addListener(marker, "click",
        function() {
            marker.openInfoWindowHtml(html, {maxWidth:378});
        });
    map.addOverlay(marker);
}
