

if (screen.width<1024) {alert("Unfortunately, to view this site properly, you require a screen resolution of 1024 x 768 or greater.  Using your current screen resolution will require horizontal scrolling.");}



var alertWarning = true;
// ignores Firefox
if(navigator.userAgent.indexOf("Firefox")!=-1){
var versionindex=navigator.userAgent.indexOf("Firefox")+8
if (parseInt(navigator.userAgent.charAt(versionindex))>=1)
alertWarning = false;
}
// ignores Opera
if (window.opera) {
alertWarning = false;
}
// ignores IE7
if (document.documentElement && typeof document.documentElement.style.maxHeight!="undefined") {
alertWarning = false;
}
// ignores IE 6
if (document.compatMode && document.all) {
alertWarning = false;
}
// catches NS6
if ((navigator.product == 'Gecko') && !window.find)	{
alertWarning = true;
	}
if (alertWarning) {alert("Unfortunately, to view this site properly, your browser must be at least IE6, Netscape7, Opera or Mozilla.");}