function SymError() {
  return true;
}
window.onerror = SymError;

function applyText(s)
{
  if (!document.getElementsByTagName) return;
  var anchors = document.getElementsByTagName("textarea");
  var anchor = anchors[0];
  anchor.value='';
    
  if(s=='General question') {
    anchor.value='I have a general question concerning...';
  }
  if(s=='Questions about an offer') {
    anchor.value='I have a question about an offer:';
  }
  if(s=='Account question') {
    anchor.value='I have a question concerning my account:';
  } 
  if(s=='Support question') {
    anchor.value='I have a problem/question and need help...';
  }  
  if(s=='Miscellaneous') {
    anchor.value='';
  }
} 