/*  ****  lists.htms JavaScript Sheet  ****  */


    addLoadEvent(first);
    addLoadEvent(second);



/*  ****************   exitSite   ****************  */

    function exitSite()
        {
            window.alert(" Your are about to leave the Venter Surname Project!  \n The Surname Project is not responsible for the content nor the \n accuracy of the information at the site to which you are going.");
            var next_site = this.getAttribute("href");
            next_site.getAttribute("target");
            window.location = next_site;       
            return false;
        }

/*  ************************************************  */



   function first()
    {
          var v_net1 = document.getElementById("vnet1");
          v_net1.onclick = exitSite;
    }

   function second()
    {
          var v_net2 = document.getElementById("vnet2");
          v_net2.onclick = exitSite;
    }



