    function confirmDelete(item) {
      return confirm("Are you sure you want to delete this " + item + "?");
    }


    function gohomeon (){
      if (document.images) {
        offall();
        document['home'].src = "/chromeimages/tab_on_home.gif";
        document.getElementById('hometab').style.visibility = "visible";
      }
    }

    function goseekerson (){
      if (document.images) {
        offall();
        document['seekers'].src = "/chromeimages/tab_on_seekers.gif";
        document.getElementById('seekerstab').style.visibility = "visible";
      }
    }

    function gorecruiterson (){
      if (document.images) {
        offall();
        document['rectawdry'].src = "/chromeimages/tab_on_recruiters.gif";
        document.getElementById('recruiterstab').style.visibility = "visible";
      }
    }

    function offall () {
      if (document.images) {

        document['home'].src = '/chromeimages/tab_off_home.gif';
        document['seekers'].src = '/chromeimages/tab_off_seekers.gif';
        document['rectawdry'].src = '/chromeimages/tab_off_recruiters.gif';

        document.getElementById('hometab').style.visibility = "hidden";
        document.getElementById('seekerstab').style.visibility = "hidden";
        document.getElementById('recruiterstab').style.visibility = "hidden";
      }
    }

