// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults




//function subBox(x, y, w, h, bgc, id, bdrw){ 
//
//
//    var d=document;
//    var v=$(d.createElement('div'));
//    v.setAttribute('id',id);
//    v.style.position='absolute';
//    v.style.left=x+'px';
//    v.style.top=y+'px';
//    v.style.width=w+'px';
//    v.style.height=h+'px';
//    v.style.visibility='visible';
//    v.style.padding='0px';
//    if(bgc != '') v.style.backgroundColor=bgc;
//
//    v.style.borderStyle='outset';
//    v.style.borderWidth=bdrw+'px';
//    v.style.MozOpacity=0.9;
//    v.style.display='block';
//    v.style.zIndex=100;
//    v.style.color='black';
//    v.style.fontSize='10pt';
//
//    return v;
//    }


