﻿function ShowDODPopup() {
    document.getElementById("signupBox").style.display = "block";
}

function HideDODPopup() {
    document.getElementById("signupBox").style.display = "none";
}
var origDiv = "";
        function emailsubscribe() {
            origDiv = document.getElementById("divSignup").innerHTML;
            WebService.SubscribeEmail(document.getElementById("txtEmail").value, document.getElementById("txtConfirm").value, success, function () { });
            document.getElementById("divSignup").innerHTML = "We are processing your Signup Request";
        }
        function success(arg) {
            if (arg) {
                document.getElementById("divSignup").innerHTML = "<br /><br /><br /><img src=\"http://www.pulsetv.com/images/editor-anisa2.jpg\" style=\"float: left; padding: 7px;\" />You have successfully joined Deal of the Day. Your first issue will arrive tomorrow.<br /><br />Make sure you whitelist anisa@gophercentral.com and deal@gophercentral.com<br /><br />I am looking forward to bringing you some great deals! Thank you for joining me.<br /><br />Be Well,<br />Anisa<br /><br />Meet our PulseTV Staff - <a href=\"http://pd.gophercentral.com/u/14445/c/117/a/100572\" target=\"_blank\">Click Here</a><br /><br />Want to get started on some great bargains? Check out our:<br /><a href=\"http://pd.gophercentral.com/u/3839/c/117/a/100572\" target=\"_blank\" style=\"font-weight: bold;\">CLEARANCE STUFF</a> or <a href=\"http://pd.gophercentral.com/u/14481/c/117/a/100572\" target=\"_blank\" style=\"font-weight: bold;\">DVD CLEARANCE</a><img src=\"http://www.offerbug.com/images/pulsetv.png\" style=\"height: 52px; width: 155px; position: absolute; bottom: 0px; left: 50%; margin-left: -75px;\" alt=\"PulseTV.com\" />";
            } else {
                document.getElementById("divSignup").innerHTML = origDiv + "<br /><span style='color: red; font-weight: bold;'>You entered an invalid email address or your email addresses do not match</span>";
            }
        }
