// Clear Input Value After Search
function eraseVal() {

document.getElementById('gsearch-input').style.backgroundImage = "url(images/bg-input-google.gif)";
}

// Google Copyright for Search Engine

function clearText(thefield) {
  thefield.style.backgroundImage = "url(images/input-bg.gif)";
  //thefield.value="";
} 
function replaceText(thefield) {
   thefield.style.backgroundImage = "url(images/bg-input-google.gif)";
   //thefield.value="";
}

