﻿var hand = function(str) {
    var maindiv = document.getElementById('listings');
    maindiv.innerHTML = str;
    AdjustCover();
    document.getElementById("progrss").style.display = "none";
    return false;
};

//ajax.setMimeType('text/xml');
//ajax.doGet('http://gift-st.restaurant.com/GetRest.asp?pgn=gcp&PageSize=3&zip=60174', hand);
//ajax.doGet('GetRest.aspx?pgn=gcp&PageSize=3&zip=60174', hand);

function searchclick(str) {
    document.getElementById("progrss").style.display = "block";
    ajax.doGet(str, hand);    
    return false;
}

function HELLO() {
    alert('hello');
}