<?php
preg_match('/.*\//', $_SERVER['SCRIPT_NAME'], $matches);
$web_prefix = 'http://'.$_SERVER['SERVER_NAME'].$matches[0].'server.php?stream=';
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Directory Player</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!-- meta http-equiv="Accept-Encoding" content="gzip" -->
<script type="text/javascript" src="script/mootools12b2nc.js"></script>
<?php
if (preg_match('/Tablet\sbrowser/i', $_SERVER['HTTP_USER_AGENT']) == 0)
include('desktop.php');
else
include('mobile.php');
?>