// PCsuite table search -  common functions

function addForm () {

var form = '<div id="searchBox"><form id="finder"><label>&#xE04;&#xE49;&#xE19;&#xE2B;&#xE32;&#xE0A;&#xE37;&#xE48;&#xE2D;&#xE23;&#xE38;&#xE48;&#xE19;&#xE42;&#xE17;&#xE23;&#xE28;&#xE31;&#xE1E;&#xE17;&#xE4C;&#xE02;&#xE2D;&#xE07;&#xE04;&#xE38;&#xE13;&#xE44;&#xE14;&#xE49;&#xE43;&#xE19;&#xE15;&#xE32;&#xE23;&#xE32;&#xE07;&#xE14;&#xE49;&#xE32;&#xE19;&#xE25;&#xE48;&#xE32;&#xE07;</label><input id="model" type="text" title="Type in your device\'s model name or number"/><div class="btn-left" id="findModel"> <span class="btn-right">&#xE04;&#xE49;&#xE19;&#xE2B;&#xE32;</span></div></form><div id="msg">&nbsp;</div><div id="titleContainer"></div></div>';
$('.table-container').before(form);
$('#findModel').after('<div class="btn-left" id="clear"> <span class="btn-right">&#xE40;&#xE23;&#xE34;&#xE48;&#xE21;&#xE43;&#xE2B;&#xE21;&#xE48; </span></div>');

$('#clear').click(function(){
  clearResults();
  $('#model').val('');
}).hide();
}

function clearResults() {
  $('#msg').html('');
  $('#found').attr('id','');
  $('.found').removeClass('found');
  $('#resultTable').remove();
  $('#clear').hide();
}

function highlightThis() {
//hide previous selection
$('#found').attr('id','');
$(this).parent().attr('id','found');
$('#msg').text('');
}

