function iContactManager() {
  this.textbox = $("#iContactFieldsEmail");

  if (this.textbox != null) {
    this.textbox.focus(this.getClearTextboxTextFunction());
    this.textbox.blur(this.getSetTextboxDefaultTextFunction());
    this.textbox.val(iContactManager.defaultText);
    $("#icpsignup").validate({
      errorLabelContainer: $("#newsletterError")
    });
  }
}
iContactManager.defaultText = "Enter Email Here...";
iContactManager.prototype.getClearTextboxTextFunction = function() {
  var oThis = this;
  return function() {
    if (oThis.textbox.val() == iContactManager.defaultText)
      oThis.textbox.val("");
  };
};
iContactManager.prototype.getSetTextboxDefaultTextFunction = function() {
  var oThis = this;
  return function() {
    if (oThis.textbox.val() == "")
      oThis.textbox.val(iContactManager.defaultText);
  };
};
