
<!-- Hide script from old browsers
   function loadAlert () {
      var answer = confirm("The following site contains adult content. By clicking OK, you certify that you are at least 18 years of age and wish to view the contents of this site.")
      if (answer ==  false)
         window.location.href= "http://kipsys.topsiteworld.com"
      else
         setCookie('visited','yes',365)
   }

   function getCookie(NameOfCookie){
       if (document.cookie.length > 0) {
       begin = document.cookie.indexOf(NameOfCookie+"=");
       if (begin != -1) {
         begin += NameOfCookie.length+1;
         end = document.cookie.indexOf(";", begin);
         if (end == -1) end = document.cookie.length;
           return unescape(document.cookie.substring(begin, end));
       }
     }
     return null;
   }

   function setCookie(NameOfCookie, value, expiredays) {
   var ExpireDate = new Date ();
   ExpireDate.setTime(ExpireDate.getTime() + (expiredays * 24 * 3600 * 1000));

     document.cookie = NameOfCookie + "=" + escape(value) +
     ((expiredays == null) ? "" : "; expires=" + ExpireDate.toGMTString());
   }

   function delCookie (NameOfCookie) {
     if (getCookie(NameOfCookie)) {
       document.cookie = NameOfCookie + "=" +
       "; expires=Thu, 01-Jan-70 00:00:01 GMT";
     }
   }

   function visited()
   {
    visited=getCookie('visited');
    if (visited==null)
    {
       loadAlert()
    }
    else setCookie('visited','yes',365)
   }
// --End Hiding Here -->

