//////////////////////////////////////////////////////////////////////
// icsWeb.js
//////////////////////////////////////////////////////////////////////
function entry(thisForm) {
   var endOfLine = "\r\n";
   var thisRegion = selectValue(thisForm.region);
   var thisTitle = textValue(thisForm.title);
   var thisWebpage = textValue(thisForm.webpage);
   var thisDescription = textValue(thisForm.description);
   return (thisRegion + endOfLine
         + thisTitle + endOfLine
         + thisWebpage + endOfLine
         + thisDescription);
   return result;
   }

