<!--
// check browser
var bName;
function getCSS(path,nfile,wfile){
	var br = app=navigator.appName;
	if (app.indexOf('Netscape') != -1) {
		bName = 'Netscape'; 
		document.write('<link rel="stylesheet" href="'+ path + nfile + '" type="text/css">');
	}
	else {
		bName = 'Microsoft';	
		document.write('<link rel="stylesheet" href="'+ path + wfile + '" type="text/css">');
	}
}
//-->