/*
//	@FileName :				dotware.js
//	@명명규칙 :
		클래스 - 파스칼식(Net)
		열거형 - 파스칼식(FileType)
		이벤트 - 파스칼식(MouseClick)
		예외 클래스 - 파스칼식
		메서드 - 파스칼식(Get, SetName)
		네임스페이스 - 파스칼식(Web, Common)
		매개변수 - 캐멀식(typeName)
		속성 - 파스칼식(Mode, BackColor)
*/

var dotware = {
	link: '/function/js/',
	imageLink: '/function/image/',
	System: {},
	Util: {},
	load: function (Script_Name, Script_Type) {
		var l_ScriptType = (typeof (Script_Type) == 'undefined') ? 'text/javascript' : Script_Type;
		var l_ScriptPath = this.link + Script_Name;
		document.write ('<script type = "' + l_ScriptType + '" src = "' + l_ScriptPath + '"><\/script>');
	}
};
// prototype Import
dotware.load ('dotware.prototype.js');

// system Import
dotware.load ('dotware.system.js');

/**
	dotware.System namespace
	==============================================
**/
var Dom = null;
var Css = null;
var Events = null;
var Forms = null;
var Browser = null;


// util Import
//dotware.load ('util.js');
/**
	dotware.Util namespace
	==============================================
**/
var RollBanner = null;
var Motion = null;
var Net = null;
