function addBtn(text, handler)
{
	btnObj = new YAHOO.ext.Button('buttons_top', {
	    text: text,
		handler: handler,
		minWidth: 100
	});
	btnObj = new YAHOO.ext.Button('buttons_bottom', {
	    text: text,
		handler: handler,
		minWidth: 100
	});
}
