// This function writes an image-tag to display the highlight-icon.
// It is being called by javascript-code generated by a list-loop,
// using a PAT boolean [Y|N] field as input parameter.

function printHighlight(toggle, scheme)
{  if (toggle == 'Y')
   {  document.write('<img src="../gfx/highlight_'+ scheme +'.gif" align="absmiddle" width="12" height="12" alt="!">')
   }
}
