$(document).ready(function() {
    $("#form1").validationEngine({inlineValidation: false, success: false});
    $("#name").focus();
    $("#address").focus(function(){
        if ($(this).val() == 'Part of the address') {
            $(this).val('');
        }
    });
    $("#name").keydown(function(e){
        if($("#name").val() == 'Part of the name'){
            $("#name").val('');
        }
    });
});

function threePlus(){
    if($("#name").val() == 'Part of the name') {
        $("#name").val('');
    }
    if($("#address").val() == 'Part of the address') {
        $("#address").val('');
    }
    if($("#name").val().length<1 && $("#address").val().length<1){
        return false;
    }
    else {
        return true;
    }
}

