function initialize() {

    //build the map
    var x = 49.081456,
        y = -122.821205,
        location = new google.maps.LatLng(x, y),
        mapOptions = {
            zoom: 8,
            mapTypeControl: false,
            mapTypeId: google.maps.MapTypeId.ROADMAP
        },
    map = new google.maps.Map(document.getElementById("map_canvas"), mapOptions);

    map.setCenter(location);

    //add the pin
    var marker = new google.maps.Marker({
        position: location,
        map: map,
        title:"Art Knapp Plantland",
        clickable: true
    });

    google.maps.event.addListener(marker, 'click', function() {
        window.open("http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=4391+King+George+hwy&sll=37.0625,-95.677068&sspn=39.371738,107.138672&ie=UTF8&hq=&hnear=4391+King+George+Hwy,+Surrey,+Greater+Vancouver+Regional+District,+British+Columbia,+Canada&ll=49.081287,-122.821183&spn=0.015938,0.052314&z=15&iwloc=A");

    });

}

window.onload = initialize;