/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function expand(_id) {
    var o=document.getElementById(_id);

    if (o) {
        o.style.display='block';
    } 
}

function collapse(_id) {
    var o=document.getElementById(_id);

    if (o) {
        o.style.display='none';
    }
}

function button_hover(_control) {
    o=document.getElementById(_control);

    if (o) {
        //  o.style.border='1px solid #000000';
        o.style.background='#1440A7';
    }
}

function button_out(_control) {
    o=document.getElementById(_control);

    if (o) {
        //  o.style.border='1px solid #3366CC';
        o.style.background='#3366CC';
    }
}
