//script for open a pop up window for confidential callback
function openPopUpWindow(url,winName,features) {
  window.open(url,winName,features);
}

//validate city page form
function validate( form ){
  if ( form.contact.value.length < 1 ) {
    alert( "Please enter an email address or phone number so that we can get back to you with a response to your question." );
    return false;
  }
  if ( form.message.value.length < 1 ) {
    alert( "Please enter a message or question.  Our team is pleased to help." );
    return false;
  }
  return true;
}