﻿function imports(fileName,type)
{
	if(fileName.indexOf(".js")==fileName.length-3||type=="js")
	{
		if(fileName=="*.js")
		{
			var path=document.location.pathname;
			path=path.substring(0,path.lastIndexOf("/")+1)+"js"+path.substring(path.lastIndexOf("/"))+".js";
			if(path.indexOf("timer.htm")<0)
				fileName=path;
		}
		if(fileName.indexOf("/")<0)
			document.write("<script type=\"text/javascript\" src=\"/public/js/"+fileName+"\"></script>");
		else
			document.write("<script type=\"text/javascript\" src=\""+fileName.toLowerCase()+"\"></script>");
	}
	else if(fileName.indexOf(".css")==fileName.length-4||type=="css")
	{
		document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\""+fileName+"\"/>");
	}
}
/************************************************************************
Copyright: Charlie
Email: xiarugu@163.com
PS: please put the [public] folder under the website %root%
************************************************************************/

imports("system.js");
imports("compatible.js");
imports("dhtml.js");
imports("*.js");