function cssStyle2DomStyle(sName) {
return sName.replace(/^-{1}/g,'').replace(/-(\w{1})/g,function(m,p){
return p.toUpperCase()
})
} 
function cssStyle2DomStyle(sName) {
return sName.replace(/^-{1}/g,'').replace(/-(\w{1})/g,function(m,p){
return p.toUpperCase()
})
}