/* Check for Mac Firefox and remove glitch that makes all text look bold */

function uacheck() {
    var browser = navigator.userAgent;
    if (browser.match("Firefox") && browser.match("Mac")) {
      document.body.style.opacity=0.9999;
    }
  }
  
// Search Field value
function clearfield() {
  if (document.getElementById('searchquery').value == 'SEARCH') {
    document.getElementById('searchquery').value = '';
  }
}
function checkfield() {
  if (document.getElementById('searchquery').value == '') {
    document.getElementById('searchquery').value = 'SEARCH';
  }
}

// Search query pass to search results page
function sendSearch() {
	var sq = window.document.getElementById('searchquery').value;
	sq = sq.replace(/ /g,"+");
	window.location = "http://www.crc.losrios.edu/Search.htm?" + sq;
}