Header and footer for result area

If you wish to add a header and footer to your result area, simply add the following few lines of javascript to your web page:

resultAreaTemplate:{
   headerHeight: 20,// in pixel
   headerContent: '<center>Header Text</center>',
   footerHeight: 15,// in pixel
   footerContent: '<center>Footer Text e.g.: <page/> of <pagesAvailable/> </center>',
},
/* possible Tags to be used within footer and header content:
   <productsMatching/>
   <page/>
   <pagesAvailable/>
   <lastUpdatedDDMMYYYY/>
   <lastUpdateTime/>
   <lastUpdatedYYYYMMDD/>
*/

Notice:

1. Please adapt the values after the ':' to your needs.
2. The above code snippet must be placed inside the 'sellectorPresentation'-variable (there should only be one per page) inside a javascript-script-tag as shown below:

<script type="text/javascript">
   var sellectorPresentation = { // there can only be one 'sellectorPresentation' variable per page
      other code
      Place your code here
      other code
   }
</script>

3. In order to avoid problems when customizing the above code, please make sure that there is NO comma before any closing '}'-bracket.