
function clearInputBox (id)
{
    if (document.getElementById && document.createElement) {
        document.getElementById(id).value = "";
    }
}

/* IE6 background image flicker bug fix */
try {
  document.execCommand("BackgroundImageCache", false, true);
} catch(err) {}
