function makeNewWindowRSS(fname,winname,w,h,t) 
{ 
	var newWindow; 
	if (String(t)=='no')
	{ 
  		newWindow = window.open(fname,winname,"toolbar=" + t + ",scrollbars=yes,resizable=yes,width=" + w + ",height=" + h ); 
	} 
 	if (String(t)=='yes') 
	{ 
  		newWindow = window.open(fname,winname,"scrollbars=yes,resizable=yes,menubar=yes,status=yes,toolbar=yes,directories=yes,personalbar=yes,location=yes,hotkeys=yes,width=" + w + ",height=" + h ); 
 	} 
	if (window.focus) { newWindow.focus(); } 
}
