﻿$(document).ready(function(){
    $.extend($.blockUI.defaults, {
        css: {
            padding: 0,
            margin: 0,
            width: '280px',
            top: '40%',
            left: '40%',
            textAlign: 'center',
            color: '#333',
            border: '1px solid black',
            backgroundColor: '#ccc',
            cursor: 'wait'
        }
            , overlayCSS: {
                backgroundColor: '#666666',
                opacity: 0.6
            }, fadeIn: 0, fadeOut: 0
    });
 
   $.unblockUI();
  
});


function onSubmit(){
    if($("form#aspnetForm").validate().form()){
         $.blockUI({ message: '<h1><img src="/images/wait_anim.gif" />Please wait...</h1>' });
        $("form#aspnetForm").submit();
    }  
}

function reset(){
    $("[id$=txtFirstName]").val('');
    $("[id$=txtLastName]").val('');
    $("[id$=txtCompany]").val('');
    $("[id$=Country]").val('');
    $("[id$=txtStreet]").val('');
    $("[id$=txtEmail]").val('');
    $("[id$=txtComments]").val('');
    $("[id$=chkSubscribe]").attr("checked","checked");
}

