var cssPath;

if (document.layers) {
    if (navigator.appVersion.indexOf("Macintosh") != -1) {		//Netscape Mac
      cssPath = '<link rel="stylesheet" href="/styles/rating_mac_ns.css" type="text/css" media="screen">';
    } else {													// Netscape Win
      cssPath = '<link rel="stylesheet" href="/styles/rating_win_nn.css" type="text/css" media="screen">';
	}
} else {
    if (navigator.appVersion.indexOf("Macintosh") != -1) {		// MSIE Mac
      cssPath = '<link rel="stylesheet" type="text/css" href="/styles/rating_mac_ie.css" media="screen">';
    } else { 													//MSIE Win
      cssPath = '<link rel="stylesheet" type="text/css" href="/styles/rating_win_ie.css" media="screen">';
	}
	cssPath += '\n<link rel="stylesheet" href="/styles/rating_print.css" type="text/css" media="print">';
}

document.write(cssPath);
extLoaded=true;
//alert(cssPath);
