﻿$('#showLogin').click(function() {
//alert($(document).height());
$('#Blocker').css('height', $(document).height());
    $('#Blocker').show();
    ShowLoginPopup();
});

$('#box').click(function() {
    $('#box').hide();
});



$('#closeLogin').click(function() {
//    alert("here");
    $('#LogInPopup').hide();
    $('#Blocker').hide();
});
$('#CloseRemind').click(function() {
    $('#ForgotPassPopup').hide();
    $('#Blocker').hide();
});
$('#closeSendMessage').click(function() {
    $('#SendMessagePopup').hide();
    $('#Blocker').hide();
});

$('#CancelRegisterPopup').click(function() {
    $('#RegisterPopup').hide();
    $('#Blocker').hide();
});

$('#CancelContactPopup').click(function() {
    $('#ContactPopup').hide();
    $('#Blocker').hide();
});
$('#btnCloseClose').click(function() {
    $('#CloseClosePopup').hide();
    $('#LogInPopup').hide();
    $('#Blocker').hide();
    
  //  $('#Blocker').hide();
});


$('#ShowSendMessage').click(function() {
    $('#Blocker').show();
    SendMessagePopup();
});

$('#ShowContact').click(function() {
    $('#Blocker').css('height', $(document).height());
    $('#Blocker').show();
    ShowContactPopup();
});

//$('#moreInfoPopup').click(function() {
//    $('#Blocker').css('height', $(document).height());
//    $('#Blocker').show();
//    ShowContactPopup();
//});


$('#ShowClose').click(function() {
    $('#Blocker').show();
    ShowClosePopup();
});