﻿<div id="divResultsSeen">
  <span class="historyHeader" style="right:8px;">
    <%=seenMessage%>
    </span>
  <%
    if (cookieVals.length > 0)
    {
    var ctr;

    if (cookieVals.length > 10){
      ctr = 10;
    }
    else{
      ctr = cookieVals.length;
    }
  
    for(var i=0; i<ctr; i++){
       if(typeof(cookieVals[i].compName) == 'undefined' && typeof(cookieVals[i].url) == 'undefined')
          continue;
      %>
        <a class="previous_results_link" href="<%=cookieVals[i].url %>"><%=cookieVals[i].compName %></a>

      <%}
    }
    %>
  </div>