base_cfgs["b_910"]={
settings: [
{type:'select',name:'corners',title:'Corner Type',items:[{value:'1',title:'Normal'},{value:'6',title:'Small Rounded'},{value:'10',title:'Medium Rounded'},{value:'20',title:'Large Rounded'}]}
],
resize:'all',
height:1,
width:1
}
box_functions['b_910']=function(box,var_store,when) {
var o = document.getElementById(box.elements['round']);

var cancel;
if (rox.ie && (box.db['corners']!=1)) cancel=['opacity'];
box.overrideStyle({node:o,cancel:cancel});


var borders={'thin':'1px','medium':'2px','thick':'3px'}


function curveCorners() {

if (box.db['corners']!=1) {

var settings = {
      tl: { radius: box.db['corners'] },
      tr: { radius: box.db['corners'] },
      bl: { radius: box.db['corners'] },
      br: { radius: box.db['corners'] },
      antiAlias: true,
      autoPad: false
}
//setOpacity(o.parentNode,50);
var cornersObj = new curvyCorners(settings, o);

cornersObj.applyCornersToAll();
}
}


if (!rox.jslib.loaded('curvycorners')) {
    rox.jslib.onload('curvycorners', curveCorners);
var cc=document.createElement('SCRIPT');
cc.src='http://files.roxer.com/user/roxer/javascript/lib/curvycorners_1.2.9_beta.js';
document.body.appendChild(cc);
} else {
    curveCorners();
}

var pub= {
style_node:o
}
return pub;


};
rox.loadBox('b_910')