/************************************************************************
* 
*/

function SpaceforAds( objid, objwidth, objheight )
{
    var obj = document.getElementById(objid);
    if( obj )
    {
            obj.style.width = objwidth + 'px';
            obj.style.height = objheight + 'px';
            obj.style.marginBottom = '15px';
    }  
}
