//系统程序路径
function system_path(){
	
	this.servletRoot = "";
	this.webRoot = "/deepapp";

	//系统程序路径
	this.message= this.servletRoot+"/servlet/com.deepsoft.system.MessageServlet";			//MessageServlet路径
	this.misc= this.servletRoot+"/servlet/com.deepsoft.system.MiscServlet";			//MiscServlet路径
	this.AuthorityServlet=this.servletRoot+"/servlet/com.deepsoft.system.AuthorityServlet";//权限servlet路径
	this.Studio= this.servletRoot+"/servlet/com.deepsoft.system.StudioServlet";			//StudioServlet路径
	this.fileview=this.servletRoot+"/servlet/com.deepsoft.fileview.FileView";
	this.dbview=this.servletRoot+"/servlet/com.deepsoft.dbview.DBView";
	this.dbquery=this.servletRoot+"/servlet/com.deepsoft.dbview.DBQuery";
	this.survey=this.servletRoot+"/servlet/com.ciecexhi.SurveyManager";

	//公共程序路径
	this.user=this.servletRoot+"/servlet/com.deepsoft.user.UserServlet";	//用户管理servlet路径
	this.CMSServlet= this.servletRoot+"/servlet/com.deepsoft.cms.CMSServlet";				//CMSservlet路径
	this.bbs=this.servletRoot+"/servlet/com.deepsoft.bbsnew.BBSServlet";
	this.bbsce=this.servletRoot+"/servlet/com.deepsoft.bbsnew.BBSServletCE";
	this.bbsst=this.servletRoot+"/servlet/com.deepsoft.bbsnew.BBSStatic";

	//在此添加项目程序路径
	this.zydlServlet=this.servletRoot+"/servlet/com.zydl.servlet.ZYDLServlet";
	this.ciecServlet=this.servletRoot+"/servlet/com.ciecexhi.servlet.CiecServlet";
	this.CiecOptionsServlet=this.servletRoot+"/servlet/com.ciecexhi.servlet.CiecOptionsServlet";

	//以下属性已废弃，为兼容老程序保留
	this.UserServlet= this.servletRoot+"/servlet/com.deepsoft.user.UserServlet";
	this.path = this.webRoot;
	this.systemManagerPath= this.webRoot + "/system";
	this.systemImgPath= this.webRoot + "/system/img"
	this.templatePath= this.webRoot + "/cms/template";							
	this.cmsManagerPath= this.webRoot + "/cms/manager";
	this.cmsManagImg= this.webRoot + "/cms/manager/image";
	this.cmsImagePath= this.webRoot + "/cms/sysimg";
	this.cmsEditPath= this.webRoot + "/cms/manager/edit";
	this.cmsDataPath= this.webRoot + "/cms/data";
	this.userManagPath= this.webRoot + "/user";
	this.userImagePath= this.webRoot + "/user/image";
	this.searchPath= this.webRoot + "/cms/search"
}
//外部使用的全局变量
systemPath=new system_path();

//其他函数
document.writeln("<script src='"+systemPath.webRoot+"/commonjs/sys_core.js'></"+"script>");
document.writeln("<script src='"+systemPath.webRoot+"/commonjs/sys_tree.js'></"+"script>");
document.writeln("<script src='"+systemPath.webRoot+"/commonjs/sys_list.js'></"+"script>");
document.writeln("<script src='"+systemPath.webRoot+"/commonjs/sys_form.js'></"+"script>");
document.writeln("<script src='"+systemPath.webRoot+"/commonjs/sys_misc.js'></"+"script>");

