<!--
function loadPage()
{
  setTimeout(setFramePos, 0);
}

function setFramePos()
{
	currentWidth = 0;
	if (window.innerWidth != currentWidth)
	{
	  currentWidth = window.innerWidth;
	  var orient = currentWidth == 320 ? "profile" : "landscape";
	  document.body.setAttribute("orient", orient);
	  setTimeout(scrollTo, 100, 2000, 1);
	}
}


function html5Player()
{
	document.MediaPlayer = document.createElement("audio");
	document.MediaPlayer.setAttribute('id', 'MediaPlayer');
	document.MediaPlayer.name = "html5";
	document.MediaPlayer.setAttribute("src", "http://zlz-stream13.streamserver.ch/1/drs1/mp3_128"); 
	document.MediaPlayer.load();
	document.MediaPlayer.play(); 
	
	document.getElementById('html5').add(MediaPlayer);
}
//-->