/* 
	e-YMCA portal site pc-side
	Last update on 2004.08.16

*/

var vNum = navigator.appVersion.charAt(0);

var bName = navigator.appName.charAt(0);



/* css link */

if(navigator.appVersion.indexOf("Mac") > -1){

	if( bName == "M"){

		// Macintosh IE 5

		document.writeln("<link rel='stylesheet' href='/css/custom_m.css' type='text/css'>");



	}else{

		if( vNum < 5 ){

			// Macintosh NETSCAPE 4.x

		document.writeln("<link rel='stylesheet' href='/css/custom_nn4_m.css' type='text/css'>");



		}else{

			// Macintosh OTHER

		document.writeln("<link rel='stylesheet' href='/css/custom_oth_m.css' type='text/css'>");



		}

	}

}else{

	if( bName == "M"){

		// Windows IE

		document.writeln("<link rel='stylesheet' href='/css/custom.css' type='text/css'>");



	}else{

		if( vNum < 5 ){

			// Windows NETSCAPE 4.x

		document.writeln("<link rel='stylesheet' href='/css/custom_nn4.css' type='text/css'>");



		}else{

			// Windows OTHER

		document.writeln("<link rel='stylesheet' href='/css/custom_oth.css' type='text/css'>");



		}

	}

}





