
<!-- Hide from old browsers
var BN=2; //init browser-type numerical variable
var BV=parseFloat(navigator.appVersion); //1st digit of browser version
//Assign Browser Type numerical value to BN:
//1=Netscape Navigator, 2=IE, 3=Opera, 4=Firefox
if (navigator.userAgent.match("MSIE")) {BN=2}; //Check if IE
if (navigator.appName=="Opera") {BN=3}; //Check if Opera
if (navigator.appName=="Netscape") {BN=4}; //Check if Firefox or Net Nav. (They are listed the same name)
if (navigator.userAgent.match("Navigator")) {BN=1}; //Check if Net. Nav. by searching for "Navigator" string in user agent type 
//Check Browswer Type and Version for proper stylesheet link
if (BN==1 && BV<=4) {document.write('<link href="http://www.dsncommunications.com/s_net4.css" rel="stylesheet" type="text/css" />')};
if (BN==1 && BV>4) {document.write('<link rel="stylesheet" type="text/css" href="http://www.dsncommunications.com/s_net5.css" />')};
if (BN==2 && BV<=4) {document.write('<link rel="stylesheet" type="text/css" href="http://www.dsncommunications.com/s_ie4.css" />')};
if (BN==2 && BV>4) {document.write('<link rel="stylesheet" type="text/css" href="http://www.dsncommunications.com/s_ie5.css" />')};
if (BN==3) {document.write('<link rel="stylesheet" type="text/css" href="http://www.dsncommunications.com/s_opera.css" />')};
if (BN==4 && BV<=4) {document.write('<link rel="stylesheet" type="text/css" href="http://www.dsncommunications.com/s_ff4.css" />')};
if (BN==4 && BV>4) {document.write('<link rel="stylesheet" type="text/css" href="http://www.dsncommunications.com/s_ff5.css" />')};
--> End old browser Hide

