var win;

function funOpenPopup( strWindowName, strWidth, strHeight, strHref ) {
	var strFormat;

	if(navigator.appName.indexOf("WebTV") != -1) //WebTV detected
	{
	   document.location.href = strHref;
// 	   alert ('Web TV Suck')
	}	
	else //Non-WebTV detected.
	{
		//alert ('Not WEb TV')
		strFormat = "width=" + strWidth + ",height=" + strHeight + ",left=10,top=0,fullscreen=no,channelmode=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable";
		win = window.open(strHref, strWindowName, strFormat, true);		
	}
}

function funOpenCamera( strWindowName, strWidth, strHeight, strHref ) {
	var strFormat;
	
	if(navigator.appName.indexOf("WebTV") != -1) //WebTV detected
	{
	   document.location.href = strHref;
	}
	else //Non-WebTV detected.
	{
	strFormat = "width=" + strWidth + ",height=" + strHeight + ",left=10,top=0,fullscreen=no,channelmode=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no";
	win = window.open(strHref, strWindowName, strFormat, true);
	}
}

function funOpenSavageCam(strHref, strWindowName) 
{
	if(navigator.appName.indexOf("WebTV") != -1) //WebTV detected
	{
	   document.location.href = strHref;
	}
	else //Non-WebTV detected.
	{
	win = window.open(strHref, strWindowName,  "width=580,height=500,left=10,top=0,fullscreen=no,channelmode=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no", true);
	}
}