<!--Global functions -->
function sbRAWL(name)
{
  if(window.document.images) 
  {
    temp_img = window.document.images[name].src;
    temp_img=temp_img.substring(0,temp_img.indexOf(".jpg"));
    temp_img=temp_img+".jpg"
    window.document.images[name].src =  temp_img;
  }
}


function sbRAWLoff(name)
{
  if(window.document.images) 
  {
    temp_img = window.document.images[name].src;
    temp_img=temp_img.substring(0,temp_img.indexOf("_over.gif"));
    temp_img=temp_img+".gif"
    window.document.images[name].src =  temp_img;
  }
}

<!--/search bar/clear/-->
function clearDefault(el) 
{
        if (el.defaultValue==el.value) el.value = ""
}