function showLegalTerms() {
   var curDate = new Date();
   var curDateStr = curDate.toDateString();
   lbdialog({
      content:"<dl id='messagebox'> <dt></dt> <dd id='message'> <p></p> <p>" + curDateStr + "<br /><br /><b>GeishaAffair.com</b> - I am over 18 and agree to viewing of sexually implicit material:</p> <p></p> <p>The following web pages, video streams, and associated links and other material contain nudity and depictions of a sexual explicit nature. All materials beyond this page at GeishaAffair.com and linked to locations are intended and authorized for access by CONSENTING ADULTS ONLY. Permission to enter this web site and to view and download video streams and other contents is strictly limited to consenting adults. As a strict condition of getting access to the GeishaAffair.com Website you affirm, represent, and warrant each of the following:</p> <ul> <li>	You are at least 18 years of age.</li> <li>	You will not redistribute any material from this site.</li> <li>	You are familiar with your local community standards and that the sexually-explicit materials which you choose to view and/or download from this web site are well within the contemporary community standards of acceptance and tolerance of your community for sexually-explicit materials of that nature;</li> <li>	Any material you download from this site is for you own personal use, and you will not show it to a minor.</li> <li>	You were not contacted by the suppliers of this material and you willingly choose to download it.</li> <li>	You have carefully read the above and agree to all of these provisions.</li> </ul> No minors are authorized, allowed or permitted to enter beyond this point. Minors are persons under the age of 18 or 21 years in places in which 18 years is not the legal age of majority. In addition to your agreement to the above representations and warranties you must click the 'I accept' button below and which shall constitute an enforceable agreement including, but not limited to, enforceability under the Federal E-Sign Statute.  </dd> </dl>", 
      cancelButton: {
        text: 'Cancel',
        callback: function() { 
       location.href = 'http://www.google.com';
       }
      }, 
      OKButton: { 
        text: 'I Accept',
        callback: function() { 
        $.post('/home/legal', function(data) {
           });
        }
      }
  });
}

$(document).ready(function(){
  showLegalTerms();
});

