﻿window.addEvent('domready', function() {
    $$(".btn-form").each(function(e) {
       // console.log(e.getChildren()[0]);
        e.getChildren()[0].addEvents({
            focus: function() {
                //console.log(this.getAttribute("for"));
                if (this.value == this.getAttribute("for"))
                    this.value = "";
            },
            blur: function() {
            if (this.value.length == 0)
                this.value = this.getAttribute("for");
            }
        })
    ;
    })
});


function SendhpForm() {
    
}
