

function openstream(id) 
{
	var w = 910;
	var h = 740;
	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('tvonline/tv-online/stream.php?id='+id,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('http://'+channel+'.tvtutti.com',null,options);
	
}
