window.addEvent('domready', function() {
    $$('input').addEvents({
	focus: function(e) {
	    if (this.value == this.getAttribute('title')) {
		this.value = '';
	    }
	},
	blur: function(e) {
	    if (! this.value) {
		this.value = this.getAttribute('title');
	    }
	}
    }).fireEvent('blur');
});

function register() {
  if ($('id-agree').checked && $('id-age-confirm').checked) {
    $$('input').each(function(input) {
	if (input.value == input.getAttribute('title')) {
	    input.value = '';
	}
    });
    $('frm').submit();
  }
}