
var boxValue;

$(function() {
    $(".TextBox").focus(
    function() {
        boxValue = $(this).val();
        $(this).val("");
    });
    $(".TextBox").blur(
     function() {
         if ($(this).val().length == 0) {
             $(this).val(boxValue);
         }
     });
    $("input").click(function() {
        (this).select();
    })

}
);

function GetEmail2() {
    var emailbox = $("#emailTextbox").val();


    var href = "http://visitor.constantcontact.com/email.jsp?p=oi&m=1101620037379&ea=" + emailbox;


    window.open(href, 'Ren&eacute;e Rouleau Skin Care - For Beautiful Skin');
}