function play(channel)
{
     var showurl="tvup://ps3.tvunetworks.com:3940/"+channel+".0.0.0";
     tvuplayer.Stop();
     tvuplayer.Play(showurl);
}

function stop()
{
  tvuplayer.Stop();
}

function refresh()
{
  tvuplayer.Refresh();
}

function vup()
{
  	var nVol = tvuplayer.Volume + 15;
	  if(nVol >= 100)
	  	tvuplayer.Volume = 100;
	  else
	  	tvuplayer.Volume = nVol;
}

function vdown()
{
  var nVol = tvuplayer.Volume - 15;
	  if(nVol <= 0)
	  		tvuplayer.Volume = 0;
	  else
	  		tvuplayer.Volume = nVol;
}

function mute()
{
  if(!tvuplayer.Mute)
  	tvuplayer.Mute = true;
  else
	tvuplayer.Mute = false;
}

function tvuplayerX(channel,width,height)
{

	if(width<200)
		width=280;
	if(height<150)
		height=280;

	document.write('<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;table-layout:fixed;" align="center" width="'+width+'" height="' + height + '" bgcolor="#000000">');
	document.write('<tr><td width="' + width + '" height="' + height + '"><!--  TVUplayer ActiveX  -->');
    document.write('<object classid="CLSID:3EA4FA88-E0BE-419A-A732-9B79B87A6ED0" id="tvuplayer" codebase="http://dl.tvunetworks.com/TVUAx.cab#Version=2,3,3,2" align="center" width="' + width + '" height="' + height +'" ></object>');
  	document.write('</td></tr><tr><td height="22" align="center" bgcolor="#000000">');
	document.write('<img border="0"  src="http://dl.tvunetworks.com/webplayer/images/play.gif" alt="Play Bollym4u" onclick="play('+channel+')" width="32">');
    document.write('<img border="0"  src="http://dl.tvunetworks.com/webplayer/images/stop.gif" alt="Stop" onclick="stop()" width="32">');
    document.write('<img border="0" src="http://dl.tvunetworks.com/webplayer/images/refresh.gif" alt="Refresh" onclick="refresh()" width="32">');
    document.write('<img border="0"  src="http://dl.tvunetworks.com/webplayer/images/mute.gif" alt="Mute" onclick="mute()" width="32">');
    document.write('<img border="0" src="http://dl.tvunetworks.com/webplayer/images/volumeup.gif" alt="Volume Up" onclick="vup()" width="32">');
    document.write('<img border="0"  src="http://dl.tvunetworks.com/webplayer/images/volumedown.gif" alt="Volume Down" onclick="vdown()" width="32">');
 	document.write('</td></tr></table>');
}