function send_card(strCard, strHeader)
{   
    document.frmCards.cardid.value = strCard;
    document.frmCards.headernum.value = strHeader;
    document.frmCards.submit();
}

function show_window(strPage)
{
    var new_window = window.open(strPage, "jacquielawson_popup", "height=550,width=500,scrollbars=yes,menubar=no");
    if (new_window == null) 
        alert("Sorry, we were unable to open a pop-up window containing the requested page.  If you have software which is designed to suppress pop-up advertisements, please disable it when visiting jacquielawson.com.");
    else
        new_window.focus();
}

function show_autologin(strPage)
{
    if (document.getElementById('autologin').checked){ 
       document.getElementById('autologin').checked = false;
    }
    else {
       document.getElementById('autologin').checked = true;
    }
    show_window(strPage);
}
 
