// JavaScript Document
var isNav, isIE;
if (parseInt(navigator.appVersion) >= 4) {
	if (navigator.appname == "Netscape") {
		isNav = true;
		//alert('nav');
	}
	else {
		if (!document.all && document.getElementById) {
			//alert('Netscape 6.0');
		} else {
			if (navigator.platform == 'Win32') {
			    isIE = true; 
			//	alert('IE Windows'); 
				}
		}
	}
}

/* 12/28/2003 removing alert; Netscape now ok. - webiv
if (!isNav && !isIE) {
	alert('The site is currently best viewed with Internet Explorer v4.5 or above on the Windows platform.\nOur original site is still available at http://original.natchezss.com and can be viewed with non-IE browsers.');
}*/

if (!navigator.cookieEnabled) {
	alert('Your browser is not currently enabling cookies to be stored.\nYou will need to allow cookies for this site if you wish to login and/or save your account data.\nCookies also help insure shopping cart contents can maintained when moving in and out of the site.\n');
}