
function goin(){
  window.location='main.php';
}

function goout(){
  window.close();
}

function index_condition(){
    var c=document.getElementById('indexmaindiv');
    var div_title=document.createElement('div');    
    div_title.align="center";
    div_title.className='title';    
    div_title.innerHTML='asianspies.com';
    c.appendChild(div_title);
    
    c.innerHTML=c.innerHTML+'<br/>';
    var str='<div>'+
        '<table border="0" width="95%" height="100%" cellpadding="0" cellspacing="0">'+
           ' <tr><td align="left" class="white_contents">'+
           ' This website is intended for persons 18 years of age and older.'+
           ' Please DO NOT ENTER if you are under the age of 18.'+
           ' This website contains material with visual images, video, audio, text descriptions'+ 
           ' and consenting adults engaging in acts of a sexually-explicit nature.'+ 
           ' If it is illegal for you to view and maintain adult material, please EXIT now.'+
 
           ' By moving forward and confirming you are 18 years and older (21 is some jurisdictions),'+ 
           ' you are choosing to be exposed to adult and sexually explicit'+ 
           ' material. The onus is on you to abide by all lawful'+ 
           ' regulations regarding adult material and your proactive choice takes all'+ 
           ' responsibility of any personal repercussions from all exposure to this web site'+ 
           ' and community standards. The originators of this website and service providers'+ 
           ' will not be held liable for your choice to move forward.'+  
           ' <br/>'+
           ' <br/>'+
 
           ' This website is not intended to be shared with persons under the age of 18 and strictly'+ 
           ' intended to be used in one\'s own privacy for personal use.'+     
           ' <br/>'+
           ' <br/>'+
 
           ' By clicking ENTER, you understand the above waiver and standards.'+
           ' If you do not understand the above statement, you must EXIT.'+ 
           ' </td></tr>'+
           '<tr><td>&nbsp;</td></tr>'+
           ' <tr><td>'+
           '     <table border="0" width="70%" height="100%" cellpadding="0" cellspacing="0">'+
           '         <tr><td bgcolor="#228B22" width="45%"><a href="#" class="entering" onclick="goin()">enter</a></td><td>&nbsp;</td>'+
           '         <td bgcolor="#DC143C" width="45%"><a href="#" class="entering" onclick="goout()">exit</a></td></tr>'+
           '     </table>'+
           ' </td></tr>'+
        '</table>';
    c.innerHTML=c.innerHTML+str;
    
    
}