<!--
// window and rollover js

	/* for graphical rollovers*/
	function rollOver(which) 
		{
		var on=document.URL.indexOf('https:')==0?'https://www.tivo.com/i/nav/nav_'+which+'_r.gif':'http://www.tivo.com/i/nav/nav_'+which+'_r.gif'; 
		if(document.images) {document.images[which].src=on;}
		else if (document.GetElementById){document.GetElementById(which).src=on;}
		}
	function rollOff(which) 
		{
		var on=document.URL.indexOf('https:')==0?'https://www.tivo.com/i/nav/nav_'+which+'.gif':'http://www.tivo.com/i/nav/nav_'+which+'.gif'; 
		if(document.images){document.images[which].src=on;}
		else if (document.GetElementById){document.GetElementById(which).src=on;}
		}		

	/*popout window */
	function openBrWindow(theURL,winName,features)
		{
				var win = window.open(theURL,winName,features);
		if (win.opener == null) {
			win.opener = self
			}
		win.focus();
		}



	function to_old_win(url)
	{
		opener.location.href = url;
	}



-->

