﻿// JScript File

function InitializeMap() 
{      
    if (document.getElementById("map_canvas") != null) 
    {    
        if (GBrowserIsCompatible()) 
        {   
            var map = new GMap2(document.getElementById("map_canvas"));
            map.addControl(new GSmallZoomControl());
            map.setCenter(new GLatLng(54.23012, -1.657991), 14);
            var sInfoContent = "<div style='float:left;margin-top:5px;'><img src='../images/Ritchey_miniLogo.gif' /></div><div style='float:left;margin-left:10px;margin-top:4px;font-size:80%;font-weight:bold;font-family:Arial;'>Ritchey plc<span style='font-size:100%;font-weight:normal;'><br />Fearby Road<br />Masham<br />Ripon<br />North Yorkshire<br />HG4 4ES<br /><b>Tel.</b> 01765 689541</span></div>";
            //map.openInfoWindowHtml(map.getCenter(), "<div>" + sInfoContent + "</div>");  
            
            // Create Marker Icon
            var icon = new GIcon();
            icon.image = "../images/Ritchey_miniLogo.gif";
            icon.iconSize = new GSize(63, 20);
            icon.iconAnchor = new GPoint(17, 10);
            icon.infoWindowAnchor = new GPoint(17, 10);

            // Add Marker Icon
            var marker = new GMarker(new GLatLng(54.23012, -1.657991), icon); 
            GEvent.addListener(marker, "click", function() { marker.openInfoWindowHtml(sInfoContent);  });
            map.addOverlay(marker);    
        } 
    }  
}

function InitializeLargeMap() 
{      
    if (document.getElementById("map_canvas") != null) 
    {    
        if (GBrowserIsCompatible()) 
        {   
            var map = new GMap2(document.getElementById("map_canvas"));
            map.addControl(new GSmallZoomControl());
            map.setCenter(new GLatLng(54.23012, -1.657991), 16);
            var sInfoContent = "<div style='float:left;margin-top:5px;'><img src='../images/Ritchey_miniLogo.gif' /></div><div style='float:left;margin-left:10px;margin-top:4px;font-size:80%;font-weight:bold;font-family:Arial;'>Ritchey plc<span style='font-size:100%;font-weight:normal;'><br />Fearby Road<br />Masham<br />Ripon<br />North Yorkshire<br />HG4 4ES<br /><b>Tel.</b> 01765 689541</span></div>";
            //map.openInfoWindowHtml(map.getCenter(), "<div>" + sInfoContent + "</div>");  
            
            // Create Marker Icon
            var icon = new GIcon();
            icon.image = "../images/Ritchey_miniLogo.gif";
            icon.iconSize = new GSize(63, 20);
            icon.iconAnchor = new GPoint(17, 10);
            icon.infoWindowAnchor = new GPoint(17, 10);

            // Add Marker Icon
            var marker = new GMarker(new GLatLng(54.23012, -1.657991), icon); 
            GEvent.addListener(marker, "click", function() { marker.openInfoWindowHtml(sInfoContent);  });
            map.addOverlay(marker);    
        } 
    }  
}
