

function openstream(streamid) 
{
	var w = 512;
	var h = 310;
	var l = (screen.width / 2) - (w / 2);
	var t = (screen.height / 2) - (h / 2);
	var options = 'directories=no,location=no,menubar=no,status=no,titlebar=no,toolbar=no,scrollbars=no,width='+w+',height='+h+',top='+t+',left='+l+',resizeable=no';

	newwindow=window.open('/stream.php?id='+streamid,null,options);
	
}

function openyouandmechannel(channel) 
{
	var w = 910;
	var h = 710;
	var l = (screen.width / 2) - (w / 2);
	var t = (screen.height / 2) - (h / 2);
	var options = 'directories=no,location=no,menubar=no,status=no,titlebar=no,toolbar=no,scrollbars=no,width='+w+',height='+h+',top='+t+',left='+l+',resizeable=no';

  newwindow=window.open('meandyou_player.php?channelcode='+channel,null,options);
	//newwindow=window.open('http://'+channel+'.tvtutti.com',null,options);
	
}



