//  { text:"Okay", handler:handleYes, isDefault:true }
YAHOO.namespace("eec.container");
function showSimpleDialog(title, message, buttons, theicon){
	if(!buttons){
		buttons = [{ text:"Okay", handler:closeSimpleDialog, isDefault:true }];
	}
	if(!theicon){
		theicon = YAHOO.widget.SimpleDialog.ICON_INFO;
	}
	YAHOO.eec.container.simpledialog1 = 
		new YAHOO.widget.SimpleDialog("simpledialog1", 
				 { width: "300px",
				   fixedcenter: true,
				   visible: false,
				   draggable: false,
				   close: true,
				   text: message,
				   icon: theicon,
				   constraintoviewport: true,
				   buttons: buttons 
				 } );
	YAHOO.eec.container.simpledialog1.setHeader(title)
	YAHOO.eec.container.simpledialog1.render("simpleDialog");
	YAHOO.eec.container.simpledialog1.show();			
}
var closeSimpleDialog= function(){
	YAHOO.eec.container.simpledialog1.hide();
}