<!-- Code adjusted May 9, 2007, lines 6 and 15 added.
// Code adjusted Ocotober 19, 2007, poppy function added for policies
    if (parseInt(navigator.appVersion) >= 4) {
        var IE4 = (navigator.appVersion.indexOf("MSIE") > 0);
        var NN4 = (navigator.appName == "Netscape");
        var NN7 = (navigator.appName == "Netscape");
		var OPERA7 = (navigator.appName == "Opera");
		var OS;
        if (navigator.appVersion.indexOf("Win") > 0) {OS = "Windows";}
        if (navigator.appVersion.indexOf("Mac") > 0) {OS = "MacOS";}
        switch (OS) {
            case "Windows":
                if (IE4 > 0) document.write ("<LINK href='/css/explorer.css' rel='stylesheet' type='text/css'>");
                if (NN4 > 0) document.write ("<LINK href='/css/netscape4.css' rel='stylesheet' type='text/css'>");
                if (NN7 > 0) document.write ("<LINK href='/css/netscape.css' rel='stylesheet' type='text/css'>");
				if (OPERA7 > 0) document.write ("<LINK href='/css/netscape.css' rel='stylesheet' type='text/css'>");
                    break;
            case "MacOS":
                if (IE4 > 0) document.write ("<LINK href='/css/explorer-mac.css' rel='stylesheet' type='text/css'>");
                if (NN4 > 0) document.write ("<LINK href='/css/netscape.css' rel='stylesheet' type='text/css'>");
                if (NN7 > 0) document.write ("<LINK href='/css/netscape.css' rel='stylesheet' type='text/css'>");
				break; 
				default:document.write ("<LINK href='/css/netscape.css' rel='stylesheet' type='text/css'");
 }
        }
//-->

// popup window
function poppy(url) {
  popupWin = window.open(url,'poppy','menubar,resizable=yes,scrollbars,width=650,height=400,left=100,top=100');
  popupWin.focus() 
}
