﻿//storeLocator.js

function getDirections(toAddress, fromZip) {
    //show the popup and load the iframe with the directions map
    var posTop = 80;
    var posLeft = 112;
    showPopup(posTop, posLeft, 950, 650);
    //showPopup(null, null, 800, 600);
    var lkp = document.getElementById('ifLookup');
    lkp.src = 'http://maps.google.com/maps?hl=en&tab=wl&saddr=' + fromZip + '&daddr=' + toAddress;
}

