if (navigator.appVersion.indexOf("Win") == -1 && parseInt(navigator.appVersion) < 5 && navigator.appVersion.indexOf("MSIE 5") == -1) {
	document.write('<link rel="stylesheet" type="text/css" href="/stylesheets/mac.css" title="Default Style Sheet">');
}

window.initWidth = window.outerWidth;
window.initHeight = window.outerHeight;
var isN4 = (navigator.appName == "Netscape" && parseInt(navigator.appVersion) == 4) ? true : false;
function correctN4() {
    if ((window.outerWidth != window.initWidth || window.outerHeight != window.initHeight) && isN4) {
        location.reload();
    }
}

function handleScroll() {
    if (navigator.appVersion.indexOf("MSIE 5") != -1 && navigator.platform.indexOf("Mac") != -1) {
        window.scroll(0,0);
    }
}
