window.onload=function(){
if(!cornercheck())
    return;
Rounded("div#accueil","top","#cde8f9","#fff","");

Rounded("div#bandeau","top","#fff","#d38aac","smooth");

Rounded("div#boxpink","all","#fff","#FFCCFF","border #FFCCFF");
Rounded("div#boxleft","tr br bl","#fff","#e4eeef","");
Rounded("div#box2left","tr br bl","#fff","#EEEEEE","");
Rounded("div#boxright","tr br bl","#fff","#fef8e6","");
Rounded("div#box2right","tr br bl","#fff","#EEEEEE","");
Rounded("div#inscription","all","#e86ea7","#66FF66","border #66FF66");
Rounded("div#contenugris","all","#fff","#FFCCFF","border #FFCCFF");
Rounded("div#espace","all","#eb85b5","#484848","");
Rounded("div#titletableaudebord","br bl","#e45398","#000000","");
Rounded("div#boxeright","tr br bl","#fff","#fef8e6","");

}

/*Rounded("div#header","bottom","#D6DEEC","#84B7FF","smooth");
Rounded("div#header h1","bottom","#84B7FF","#657DA6","small smooth");
Rounded("div#content","tl bottom","#D6DEEC","#FFF","smooth");
Rounded("div#nav","tr bottom","#D6DEEC","#95B3DE","smooth");
Rounded("div#sidenotes","all","#D6DEEC","#B1C0D5","smooth");
Rounded("form","all","#D6DEEC","#B4CEF7","smooth");
Rounded("blockquote","tr bl","#FFF","#CDFFAA","border #88D84F");
Rounded("div#relax","all","#FFF","transparent");
Rounded("div#footer","all","#D6DEEC","#CCCCCC","small border #fff");


all will round all corners 
top will round top corners 
bottom will round bottom corners 
tl will round top-left corner 
tr will round top-right corner 
bl will round bottom-left corner 
br will round bottom-right corner 

smooth will produce lighly antialiased nifty corners: the Javascript library will compute automatically the intermediate color to blend the inner and outer color more gently: so, in this case they must be both be specified. 
border (followed by a color in hex code with # symbol, in three or six digits) will make corners with edges. Note that you can also get transparent corners, but just outside the edges. 
small will produce small corners, and could be applied to every kind of corners 



*/
