
function MM_openBrWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}

function displayButton()
{
	$(".makeButton").each(function() {
        $(this).button({
        	icons: {
            	primary: $(this).attr("icon"),
            	secondary: $(this).attr("iconRight")
        	},
        	text : $(this).html()
        }).removeAttr("icon").removeAttr("iconRight").removeClass("makeButton");
    });
}
