<!--//hide code from old browsers
// Determine the browser and platform and select the matching stylesheet
// Adapted from Web Page Design For Designers; http://www.wpdfd.com

var vBrowserType=navigator.appName; 			// tells if Netscape or Explorer
var vPlatform=navigator.appVersion; 		// tells if Mac or PC
var vCSSFile="";						// initial CSS file

if (vBrowserType == "Netscape"){ // this is the Netscape browser sniffer
	if (vPlatform.indexOf("Macintosh") == -1){
        	vCSSFile='winnn.css';
          	} 
	else{
        	vCSSFile='macnn.css';
	}
}
     		

if (vBrowserType == "Microsoft Internet Explorer"){ // this is the MSIE browser sniffer
	if (vPlatform.indexOf("Macintosh") == -1){
        	vCSSFile='winie.css';
	} 
	else{
		vCSSFile='macie.css';
	}
}
vCSSFile = "private/"+vCSSFile; //append folder location to path
document.write('<link href="'+vCSSFile+'" rel="styleSheet" type="text/css" />');
//-->
