<!--
function Main()
{
   var strResult = new String()
   var intUserID = GetUserID()

   strResult += '<DIV CLASS="main" ID="main">'

   strResult += '<DIV CLASS="features" ID="features">'
   strResult += '<IMG BORDER="0" SRC="images/layout/featuresheader.gif">'
   strResult += '<DIV ID="holder">'

   if (arrfeatures.length !== 0 && arrissue.length !== 0)
   {
      for (var i = 0; i < arrfeatures.length; i++)
      {
         var intIssueArticleID = arrfeatures[i][0]
         var strTitle = StringDecode(arrfeatures[i][1])
         var strSummary = StringDecode(arrfeatures[i][2])
         var strImage = StringDecode(arrfeatures[i][3])
         var strFile = StringDecode(arrfeatures[i][4])

         if (strFile.length !== 0) 
         { 
            if (strImage.length !== 0) { strResult += '<A HREF="' + SITE_FILEURL + '/' + strFile + '" TARGET="_new"><IMG BORDER="0" SRC="' + SITE_IMAGEURL + '/full/' + strImage + '"></A>' }
            strResult += '<H3><A HREF="' + SITE_IMAGEURL + '/' + strFile + '">' + strTitle + '</A></H3>'
         }
         else
         {
            if (strImage.length !== 0) { strResult += '<IMG BORDER="0" SRC="' + SITE_IMAGEURL + '/full/' + strImage + '">' }
            strResult += '<H3>' + strTitle + '</H3>'
         }

         strResult += '<P>' + strSummary + ' </P>'
      }
   }

   strResult += '</DIV>'
   strResult += '<IMG BORDER="0" SRC="images/layout/featuresbottom.gif">'
   strResult += '</DIV>'
   strResult += '<DIV CLASS="textbody">' + GetPageTexts(false) + '</DIV>'

   if (arrnews.length !== 0)
   {
      strResult += '<TABLE CELLPADDING="0" CELLSPACING="0"><TR><TD>'

      for (var i = 0; i < arrnews.length; i++)
      {
          var intNewsID = arrnews[i][0]
          var strTitle = StringDecode(arrnews[i][1])
          var strSummary = StringDecode(arrnews[i][2])
          var strImage = StringDecode(arrnews[i][3])
 
          strResult += '<H2><IMG SRC="images/icons/icon-greybox.gif"> ' + strTitle + '</H2>'
          if (strImage.length !== 0) { strResult += '<IMG STYLE="float: left; margin-right: 5px" SRC="' + SITE_IMAGEURL + '/full/' + strImage + '">' }
          //strResult += '<P STYLE="color: red" CLASS="single"><B>gratis voor nieuwe abonnees</B></P>'
          strResult += '<P CLASS="single">' + strSummary + '</P>'
          strResult += '<P><IMG SRC="images/icons/icon-readmore.gif"> <A HREF="default.asp?pageID=' + intLidWordenPageID + '">abonnee worden</A></P>'
          strResult += '<BR STYLE="clear: both">'
      }

      strResult += '</TD></TR></TABLE>'
   }

   strResult += '<P CLASS="navigator"><IMG SRC="images/icons/icon-uparrowgray.gif"> <A HREF="#top">top</A></P><br style="clear: both"> '
   strResult += '</DIV>'

   strResult += InsertSideBar()
   strResult += '<BR STYLE="clear: both">'

   document.getElementById("content").innerHTML = strResult
}

InsertLayout()
Main()
//-->