﻿        var signupProcess = false;
        var showPopup = false;
        function WirePopUp(){
            showPopup = true;
        }
        
        $(document).ready(function () {
            if(showPopup)
            {
	            $('a:not(.exempted3Clicks)').click(
	                function (e) {
	                    e.preventDefault();
                        $('#basicModalContent').modal({
		                    onClose: function (){
		                    $.modal.close();
		                    if(!signupProcess)
		                        document.location = '/Step1.aspx';
		                    }
		                });
	                });
	            }
            });