//Script to autiomatically redirect users with JavaScript enabled to the single-page, JavaScript version of the site.
var url = location.href;
var a = url.lastIndexOf('/')+1;
var b = url.lastIndexOf('.php');
var fragment = '';
if(b>a){
  var fragment = "#"+url.substring(a, b);
}
window.location = ("streamme.php"+fragment);