// JavaScript Document
  
function underConstructionSearch()
{
  alert('Search Function still under Construction!!!');
}

function validateSearchString()
{
  document.getElementById("searchformError").innerHTML = '';

  var searchText = document.getElementById('searchQueryText').value;
  if (searchText.length < 3)
  {
	  document.getElementById("searchformError").innerHTML = '<b>Search string > 2 chars</b>';
	  return false;
  }
  else
  {
	  document.getElementById("searchformError").innerHTML = '<b>Loading...</b>';
  }
}

function showContactExp()
{
	
	var text = '<a href="mailto:contact@easyapex.com">contact@easyapex.com</a>';

    document.write(text);
}

function showContact()
{
	
	var t_text = '<a href="mailto:contact@easyapex.com">Contact Us</a>';

    document.write(t_text);
}

function showFeedback()
{
	
	var text = '<a href="mailto:feedback@easyapex.com">Feedback</a>';

    document.write(text);
}

function showCusContact(p_mess)
{
	
	var text = '<a href="mailto:contact@easyapex.com">'+p_mess+'</a>';

    document.write(text);
}

