/**********************************************************************

[ /js/common.js ]
**********************************************************************/



/* 内容
-------------------------------------------------
 ・ROOTPATH環境設定
 ・JQueryの読み込み
------------------------------------------------- */


/*=====================================================================
 ROOTPATH　環境設定
=====================================================================*/ 

var gPathFlg = 0;    // 0:本サーバ, 1:テストサーバ
var gRootPath = '';

if( gPathFlg == 0 )     { gRootPath = location.protocol +'//' + document.domain + location.port + '/'; }
else if( gPathFlg == 1 ){ gRootPath = location.protocol +'//' + document.domain + location.port + '/swptest/'; }



/*=====================================================================
 JQueryの読み込み
=====================================================================*/
document.write('<script type="text/javascript" src="' + gRootPath + 'js/lib/jquery.js"><\/script>');




