function AlphabetCheck() {
   var str = document.iform.keyword.value;
   if( str.match( /[^A-Za-z0-9-]+/ ) ) {
      alert("Input alphanumeric characters and  hyphen only.");
      return false;
   }
   return true;
}
