// JavaScript Document
function write_flash( text ) {
   document.write(text);
 }

function write_ad(text)
 {
	document.getElementById("ad").innerHTML = text;
 }

function write_channel(text)
 {
	document.getElementById("channel1").innerHTML = text;
 }
 
function write_playlist(text)
 {
	document.getElementById("playlist1").innerHTML = text;
 }
 
 function write_ps(text)
 {
	 //document.getElementById("playlist1").innerHTML = '';
	 document.getElementById("tv1").innerHTML = text;
 }
 
 function write_prev(text)
 {
	 //document.getElementById("tv1").innerHTML = '';
	 document.getElementById("tv1").innerHTML = text;
 }

  function write_miniwmtv(text)
 {
	document.getElementById("miniwmtv").innerHTML = text;
 }

