
/////////////////////////////////////////////////////////////////////////////
//
// lpo_site_ccontact.js - ::LPO::SITE::CContact javascript module
// --------------------------------------------------------------------------
//
// LIVINGPICTURE.ORG
//
/////////////////////////////////////////////////////////////////////////////

/////////////////////////////////////////////////////////////////////////////
function __LPO__SITE__CContact__Show(node, language) {
  __WWW__HTML__Load(node, language, "site", "contact", "show", "");
} // __LPO__SITE__CContact__Show


/////////////////////////////////////////////////////////////////////////////
function __LPO__SITE__CContact__page__form__Refresh(person_name, address, subject, content) {
  var button = document.getElementById("LPO__SITE__CContact__page__form__button__SEND_1");

  if ((person_name == "") || (address == "") || (subject == "") || (content == "")) {
    button.disabled = true;
  } else {
    button.disabled = false;
  }
} // __LPO__SITE__CContact__page__form__Refresh


/////////////////////////////////////////////////////////////////////////////
function __LPO__SITE__CContact__SendMessage(node, language, person_name, address, subject, content) {
  __WWW__HTML__Load(node, language, "site", "contact", "sendmessage", "&person_name=" + person_name + "&address=" + address + "&subject=" + subject + "&content=" + content);
} // __LPO__SITE__CContact__SendMessage



