YAHOO.namespace("fb2.container");

function init() {
	
	var handleOK = function() {
		this.hide();
	};

	// Instantiate the Dialog
	YAHOO.fb2.container.fb2AlertDialog = new YAHOO.widget.SimpleDialog("fb2AlertDialog", 
												 { width: "300px",
												   fixedcenter: true,
												   visible: false,
												   draggable: false,
												   modale:false,
												   close: true,
												   icon: YAHOO.widget.SimpleDialog.ICON_INFO,
												   text: "default text",
												   constraintoviewport: true,
												   buttons: [ { text:"OK", handler:handleOK}]
												 } );
	
	YAHOO.fb2.container.fb2AlertDialog.setHeader("Default Header");
	
	// Render the Dialog
	YAHOO.fb2.container.fb2AlertDialog.render("container");

}

YAHOO.util.Event.addListener(window, "load", init);
