function run_geo(homepage){
let url='https://api.typuje.pl/api/geo';
fetch(url).then(function(response){
return response.text().then(function(text){
console.log(text);
if(text.trim()=="pl"){
document.getElementById("modalcom").style.display="block";
setTimeout(function(){
window.location.href=homepage;
}, (3000));
}});
});
};