// LEGACY IMPORT FROM WF1 SITE
// functions possibly not in use...

// Contains components that get displayed through javascript only.



function printPageComponent() {
  html  = '<div id="print-page">';
  html += '  <input class="button" \n';
  html += '         id="print-page-button" \n';
  html += '         onclick="window.print();" \n';
  html += '         onmouseup="this.blur();" \n';
  html += '         title="Print the current page." \n'; 
  html += '         type="button" \n'; 
  html += '         value="Print this page"';
  html += '   />';
  html += '</div>';
  return html;
}

function printPageLink() {
  html  = "<span id=\"component-box-print-link\" \n";
  html += "      class=\"button\"\n"; 
  html += "      onclick=\"window.print();\">\n";
  html += "Print this page";
  html += "</span>";
  return html;
}

function separatorComponent() {
  html = "<span class=\"separator\">|</span>";
  return html;
}

