// IF THE BROWSER IS MSIE4.0 FOR WINDOWS NT AND 95 ONLY, THEN bIsIE432 = TRUE 
var sAgent = navigator.userAgent; 
var bIs95NT = sAgent.indexOf("Windows 95") > -1 || sAgent.indexOf("Windows NT") > -1 || sAgent.indexOf("Win32") > -1 || sAgent.indexOf("Windows 98") > -1 || sAgent.indexOf("Windows 2000") > -1; 
var bIsIE4 = sAgent.indexOf("IE 4") > -1 || sAgent.indexOf("IE 5") > -1; 
var bIsIE432 = bIs95NT && bIsIE4; 


function fGo(URL) 
{ 
	var ls='toolbar=1,location=1,directories=0,status=1,menubar=1,left=0,top=0,width=800,height=600,scrollbars=1,resizable=1'; 
	window.open(URL,'BTR',ls); 
}
