﻿
function initurl() {
            $.ajax({   
                type:"GET",   
                url:"checkip.php",   
                dataType:"html",   
                data:"&time="+new Date(),   
                cache: false,   
                async: false,
                success:function(msg) {   
                   if(msg == 1) {
					  location.href = 'http://www.keatsedu.com';
                   }
                } 
            });   
        } 
initurl();
