﻿function salahAwareness_Click() {
    window.location.href = "http://www.mobile.salahtimes.com";
}

function advertiseWithUs_Click() {
    window.location.href = "WhyAdvertise.aspx";
}

function doSearch(e) {
    var theEvent = (document.all) ? event : e;
    if (theEvent.keyCode == 13) {
        var txtHeadSearch = document.getElementById('txtHeadSearch');
        window.location.href = "../Pages/SearchPlaces.aspx?criteria=" + txtHeadSearch.value;
        if (document.all) {
            theEvent.cancelBubble = true;
            theEvent.returnValue = false;
        }
        else {
            theEvent.stopPropagation();
            theEvent.preventDefault();
        }
    }
}

function page_loaded() {
}