function chk_quotation(){

 if(document.theForm.topic.value==""){
  alert(E_TOPIC_NULL_TEXT);
  document.theForm.topic.focus();
   return false;
 }


 if(document.theForm.details.value==""){
  alert(E_IDEA_NULL_TEXT);
  document.theForm.details.focus();
   return false;
 }
   

if(document.theForm.topic.value.length<5){
 alert(E_TOPIC_SHORT_TEXT);
  document.theForm.topic.focus();
   return false;
 }

if(document.theForm.details.value.length<10){
 alert(E_IDEA_SHORT_TEXT);
  document.theForm.details.focus();
  return false;
}

return true;
}