var path="";

function cssLoad(){

	winIE='/magazine/monthly/styles/win_ie.css';

	winNN='/magazine/monthly/styles/win_nn.css';

	macIE='/magazine/monthly/styles/mac_ie.css';

	macNN='/magazine/monthly/styles/mac_nn.css';

	var cssFile='';

	strApp=navigator.appName;

	strAgnt=navigator.userAgent;



	if (strAgnt.indexOf("Win") != -1) {

		if (strApp.indexOf('Microsoft') != -1) {

			cssFile = winIE;

		} else if (strApp.indexOf('Netscape') != -1) {

			cssFile = winNN;

		} else {

			cssFile = winIE;

		}

	} else if (strAgnt.indexOf("Mac") != -1) {

		if (strApp.indexOf('Microsoft') != -1) {

			cssFile = macIE;

		} else if (strApp.indexOf('Netscape') != -1) {

			cssFile = macNN;

		} else {

			cssFile = macIE;

		}

	} else {

		cssFile = winIE;

	}



	//csst@CÌN«Ý

	if (cssFile != '') {

		document.write('<LINK rel="stylesheet" href="' + cssFile + '">');

	}

}



cssLoad();

