function ConcealText( MailType ){
  AreaText = document.mail.comment.value;
  if( MailType == 'Price' ){
    if( AreaText == 'ご要望（メモリ増設など）を、できるだけ細かくご記入ください。'){ document.mail.comment.value = ''; }
  }else{
    if( AreaText == '※詳細はできるだけ細かくご記入ください。'){ document.mail.comment.value = ''; }
  }
}

function RevealText( MailType ){
  AreaText = document.mail.comment.value;
  if( MailType == 'Price' ){
    if( AreaText =='' ){ document.mail.comment.value = 'ご要望（メモリ増設など）を、できるだけ細かくご記入ください。'; }
  }else{
    if( AreaText =='' ){ document.mail.comment.value = '※詳細はできるだけ細かくご記入ください。'; }
  }
}

