﻿function directionsOpen() {
    var newwindow;
    newwindow = window.open('/Directions.aspx', 'Directions', 'height=600,width=1000,resizeable=yes');
    if (window.focus) {
        newwindow.focus()
    }
}