// JavaScript Document
var BN = (navigator.appName);
var BV = (navigator.appVersion);

if (((BN).indexOf("Microsoft")!=-1) & ((BV).indexOf("MSIE 7")!=-1)) { 
	document.write('<link rel="stylesheet" href="/includes/ie7styles.css" type="text/css">');
} else if (((BN).indexOf("Microsoft")!=-1) & ((BV).indexOf("MSIE 6")!=-1)) { 
	document.write('<link rel="stylesheet" href="/includes/ie6styles.css" type="text/css">');
} else if (((BN).indexOf("Microsoft")!=-1) & (!(BV).indexOf("MSIE 6")!=-1) & (!(BV).indexOf("MSIE 7")!=-1)) { 
	document.write('<link rel="stylesheet" href="/includes/ie6styles.css" type="text/css">');
} else if ((BN).indexOf("Netscape")!=-1) {
	document.write('<link rel="stylesheet" href="/includes/mozstyles.css" type="text/css">');
}