﻿function showBigImage(imgSrc) {
    _HTMLArea = document.getElementById('BigImageID');
    if (_HTMLArea) {
        imgSrc = imgSrc.replace("|", "\\");
        imgSrc = imgSrc.replace("|", "\\");
        imgSrc = imgSrc.replace("|", "\\");
        imgSrc = imgSrc.replace("|", "\\");
        imgSrc = imgSrc.replace("|", "\\");
        imgSrc = imgSrc.replace("|", "\\");
        imgSrc = imgSrc.replace("|", "\\");
        imgSrc = imgSrc.replace("|", "\\");
        _HTMLArea.innerHTML = "<img src='" + imgSrc + "' alt='' />";
        // _HTMLArea.innerHTML=imgSrc;
        _HTMLArea.style.visibility = 'visible';
    };
}
function hideBigImage() {
    _HTMLArea = document.getElementById('BigImageID');
    if (_HTMLArea) {
        _HTMLArea.style.visibility = 'hidden';
    };
}
function clickItinerary(venueId) {
    clearTimeout(timeoutID)
    ajaxBusy = false;
    AjaxGetData('addToItineraryCmd', venueId, serverResponseHandler);
}
