/**********************************************************************
 [common.js]
**********************************************************************/

/*---------------------------------------------
 set
---------------------------------------------*/
var strRootPath  = ''; //home
var crntURL = location.href;
if(crntURL.indexOf('/dcaj/htdocs') != -1){
	strRootPath  = '/dcaj/htdocs'; //test
}

var strLinkPath  = strRootPath;
var strCommonDir = strRootPath + '/shared';

/*---------------------------------------------
 stylesheet
---------------------------------------------*/
with (document) {
	if(navigator.userAgent.indexOf("Netscape/7.") != -1){
		write('<link rel="stylesheet" type="text/css" href="' + strCommonDir + '/css/clearfix.css" media="all">\n');
	}
}

