

function openstream(id) 
{
	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('/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);

}

function openextern(url) 
{
	var w = screen.width-70;
	var h = screen.height-70;
	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=yes,width='+w+',height='+h+',top='+t+',left='+l+',resizeable=yes';

	newwindow=window.open(url,null,options);
	
}
