<?php

require_once 'Mobile_Detect.php';
$detect = new Mobile_Detect;

if( $detect->isAndroidOS() ){
	header('Location: https://android.sts.pl');
}
else if( $detect->isiOS() ){
	header('Location: https://itunes.apple.com/pl/app/sts-online/id904595321?mt=8');
}else {
	header('Location: https://www.sts.pl/pl/mobile-app/?m=1');
}