<!--

var win = navigator.appVersion.indexOf("Win", 0) != -1;
var mac = navigator.appVersion.indexOf("Mac", 0) != -1;

if(win) {
	str = navigator.userAgent.toUpperCase();

	if (str.indexOf("MSIE") >= 0){
		
		document.write('<link rel="stylesheet" href="common/whole_ie.css" type="text/css">');
		
	}else if (str.indexOf("FIREFOX") >= 0){
		
		document.write('<link rel="stylesheet" href="common/whole_nn.css" type="text/css">');

	}else if (str.indexOf("NETSCAPE") >= 0){
		
		document.write('<link rel="stylesheet" href="common/whole_nn.css" type="text/css">');
		
	}else{
		
		document.write('<link rel="stylesheet" href="common/whole_ie.css" type="text/css">');
	
	}

}else if(mac) {
	str = navigator.userAgent.toUpperCase();

	if (str.indexOf("OPERA") >= 0){
		
		document.write('<link rel="stylesheet" href="common/whole_nn.css" type="text/css">');

	}else if (str.indexOf("MSIE") >= 0){
		
		document.write('<link rel="stylesheet" href="common/whole_ie.css" type="text/css">');
		
	}else if (str.indexOf("FIREFOX") >= 0){
		
		document.write('<link rel="stylesheet" href="common/whole_nn.css" type="text/css">');

	}else if (str.indexOf("NETSCAPE") >= 0){
		
		document.write('<link rel="stylesheet" href="common/whole_nn.css" type="text/css">');
		
	}else{
		
		document.write('<link rel="stylesheet" href="common/whole_nn.css" type="text/css">');
	
	}

}else {
	
	document.write('<link rel="stylesheet" href="common/whole_nn.css" type="text/css">');

}


// -->