﻿function fnDisplayPrint() {
    var strOpenDisplayPrintPage = window.open("Brochure.aspx?", "FloorPlanModel",
            "menubar=no,location=no,toolbar=no,resizable=no," +
            "scrollbars=1,status=no,width=840,height=900,left=100,top=10");
}

function fnDisplayDirections() {
    var strOpenDisplay = window.open("Directions.aspx?", "Directions",
            "menubar=no,location=no,toolbar=no,resizable=no," +
            "scrollbars=1,status=no,width=900,height=900,left=100,top=10");
}

function OnClientClose(oWnd) {
    oWnd.GetContentFrame().src = "about:blank";
}

function OpenAvailability() {

    var URL = document.getElementById("PropHiddenName").value;
    window.open(URL, '', '');

}

function KeyPressed(ctrl, e) {
    if (e.get_domEvent().rawEvent.keyCode == 13) { //enter special handling (focus other control and so on) here   
        e.get_domEvent().preventDefault();
        e.get_domEvent().stopPropagation();
    }
    if (e.get_domEvent().rawEvent.keyCode == 27) { // ESC special handling (clear values and so on) here   
        e.get_domEvent().preventDefault();
        e.get_domEvent().stopPropagation();
    }
}

