﻿function codeAddress(_pcode, _content, _lat, _lng) {
    var address = _pcode;

    var infowindow = new google.maps.InfoWindow({
        content: _content,
        maxWidth: 200
    });

    var myLatlng = new google.maps.LatLng(_lat, _lng);

    var image = '/images/maphouse.png'; 

    var marker = new google.maps.Marker({
        map: map,
        position: myLatlng,
        icon: image
    });

    google.maps.event.addListener(marker, 'click', function() {
        infowindow.open(map, marker);
    });
}

function openPopup(url) {
    width = 798;
    height = 630;
    x = parseInt(screen.width / 2.0) - (width / 2.0);
    y = parseInt(screen.height / 2.0) - (height / 2.0);

    var win = window.open(url, "editorPopup", "top=" + y + ",left=" + x + ",scrollbars=no,dialog=yes,minimizable=no,modal=yes,width=" + width + ",height=" + height + ",resizable=no");
}
