

var isIE;
var isFF;
function NavDetect()
{
 	isIE = navigator.appName == "Microsoft Internet Explorer" ; 	/* IE */
 	isFF = navigator.appName == "Netscape" ; 						/* Netscape, Mozilla Firefox */
}


