/*
  By Hangring
  #2008.11.03#
  ---
*/
function Frame () {}

Frame.prototype = {
	// Frame.Popup
	Popup : null,
	// Frame.Alert
	Alert : null,
	// Frame.Tip
	Tip : null,
	
	Create : function () {
		var body  = document.body;
		
		var popup = this.Popup = new Frame.Popup();
		popup.Create(body);
		
		var _alert = this.Alert = new Frame.Alert();
		_alert.Create(body);
		
		var tip = this.Tip = new Frame.Tip();
		tip.Create(body);
	}
};