﻿
function loadOverlay(areaKey)
{
    $get('tourUnderlay').style.display = 'block';
//    $get('tourOverlay').style.display = 'block';
    
     $('#tourOverlay').fadeIn(400); 
    $get('overlayDrop').style.display = 'block';
    $get('tourOverlay').innerHTML = '<div style="width: 100%; margin-left: auto; margin-right: auto; text-align: center"><img src="images/ajax-loader.gif" /></div>';
    TourHtmlGen.GetHtml(areaKey, OnSuccess, OnFailure);
}

function unloadOverlay()
{
    
    $get('overlayDrop').style.display = 'none';
     $get('tourOverlay').style.display = 'none';
     $get('tourUnderlay').style.display = 'none';
     $get('tourOverlay').style.display = 'none';
    
}

function OnSuccess(result) 
{
    $get('tourUnderlay').style.display = 'block';
    $get('tourOverlay').style.display = 'block';
    $get('overlayDrop').style.display = 'block';
    $get('tourOverlay').innerHTML = result;
}

function OnFailure(error) 
{
 // Error handling
 $get('tourOverlay').style.display = 'block';
 $get('tourOverlay').innerHTML = "Error";
}

