﻿//Last Seconds Scripts..
function showLastSeconds()
{
    $("#lastSeconds").hide();
    $("#lastSeconds").dialog({ draggable: false, height: 365 ,  width: 532, 
             resizable: false, modal: true , closeOnEscape: false,                
            open: function(event, ui) { $('.ui-dialog-titlebar').hide();                                
                 }  }); 
}

function hideLastSeconds()
{
    $("#lastSeconds").dialog( 'close' )
}

function downloadLastSecondsPdf( url )
{
    window.open( url, "IberoCruceros");
}

//Execute @ page load...
$(document).ready(function(){
   
    if ( ( !lastSecondExpired ) & (!isPostBack) & (!alreadyShown) )
    {
        showLastSeconds();
            
        //hide after some seconds...
        window.setTimeout( hideLastSeconds, 20000 );    
    }
    
});

