/*
Name	: Embed CSS for Static HTML JavaScript
Author	: Ryutaro MIYASHITA (in Littel Corporation)
Origin  : 2010/10/26
Create	: 2010/11/04
Update	: 2010/11/04
*/

function embedCSS() {
	// Get Browser User Agent
	var nua  = navigator.userAgent;

	// Get HTML File Name
	var path = location.pathname;
	var file = path.substring(path.lastIndexOf('/', path.length) + 1, path.length);
	var name = file.substring(0, file.lastIndexOf('.'));

	if (name == '404') {
		// Embed Common Stylesheet
		document.writeln('<link rel="stylesheet" type="text/css" href="/css/base.css" />');
		document.writeln('<link rel="stylesheet" type="text/css" href="/css/common.css"  />');
	
		document.writeln('<link rel="stylesheet" type="text/css" href="/css/subcom.css" />');

		// Embed Legacy Internet Explorer Stylesheet
		if(nua.indexOf('MSIE 6') > -1 || nua.indexOf('MSIE 7') > -1) {
			document.writeln('<link rel="stylesheet" type="text/css" href="/css/iefix.css" />');
		}
	} else if (name.substring(0,3) == 'inf' && name.length == 9){
		// Embed Common Stylesheet
		document.writeln('<link rel="stylesheet" type="text/css" href="/css/base.css" />');
		document.writeln('<link rel="stylesheet" type="text/css" href="/css/common.css"  />');
	
		document.writeln('<link rel="stylesheet" type="text/css" href="/css/subcom.css" />');

		// Embed Legacy Internet Explorer Stylesheet
		if(nua.indexOf('MSIE 6') > -1 || nua.indexOf('MSIE 7') > -1) {
			document.writeln('<link rel="stylesheet" type="text/css" href="/css/iefix.css" />');
		}
		document.writeln('<link rel="stylesheet" type="text/css" href="/css/subpage/inf.css" />');
	} else {
	
		// Embed Common Stylesheet
		document.writeln('<link rel="stylesheet" type="text/css" href="css/base.css" />');
		document.writeln('<link rel="stylesheet" type="text/css" href="css/common.css"  />');

		// Embed Indivisual Page Stylesheet
		if(name == 'index' || name == '') {
			document.writeln('<link rel="stylesheet" type="text/css" href="css/index.css" />');
		} else {
			document.writeln('<link rel="stylesheet" type="text/css" href="css/subcom.css" />');
			document.writeln('<link rel="stylesheet" type="text/css" href="css/subpage/' + name + '.css" />');
		}
		// Embed Legacy Internet Explorer Stylesheet
		if(nua.indexOf('MSIE 6') > -1 || nua.indexOf('MSIE 7') > -1) {
			document.writeln('<link rel="stylesheet" type="text/css" href="css/iefix.css" />');
		}
		if(name == 'index' || name == '') {
			document.writeln('<link rel="stylesheet" type="text/css" href="css/print.css"  media="print" />');
		} else {
			document.writeln('<link rel="stylesheet" type="text/css" href="css/subpageprint/' + name + 'print.css"  media="print" />');
		}
		
	}

}

