/* ********** System Fonksiyonu Başlangıç ********** */

// Gerekli olan js dosyalarını eklemek için kullanılan fonksiyon

		var System = { Js:new Array(), Css:new Array(), siteName:"",
			addJs:function (_file) { this.Js [ this.Js.length  ] = _file; },
			addCss:function (_file){ this.Css[ this.Css.length ] = _file; },
		    Out:function (_text) { document.write(_text); },
			FileOut:function (_type) {
				var Includes = "";
				if (this.Js)
					for (js in this.Js)
						Includes += "<script type=\"text/javascript\" src = \"" + this.siteName + this.Js[js] + "\"><" + "/script>\r\n";
				if (this.Css)
					for (css in this.Css)
						Includes += "<link href=\"" + this.siteName + this.Css[css] + "\" type=\"text/css\" rel=\"stylesheet\" />\r\n";
				this.Out(Includes);
		    }
		}
		System.addJs("js/system/s_inc.js");
		System.FileOut ();
/* ********** System Fonksiyonu Bitiş ********** */
