
function setVars(theFileName, theID, theShadowID, theAmount, thePosition){
    setWidth(theID, theShadowID);
    changeTo(theFileName);
    if(thePosition <= theAmount-3){
        P7_Snap(theFileName,theID,-9,27);
    }else{
        var new_width = 0;
        var channel_width = document.getElementById(theFileName).offsetWidth;
        var subchannel_width = document.getElementById(theID).offsetWidth;
        new_width = channel_width-subchannel_width+30;
        P7_Snap(theFileName,theID,new_width,27);
        //alert('thisone'+new_width);
    }
}

function setVarsforOn(theFileName, theID, theShadowID, theAmount, thePosition){
    setWidth(theID, theShadowID);
    if(thePosition <= theAmount-3){
        P7_Snap(theFileName,theID,-9,27);
    }else{
        var new_width = 0;
        var channel_width = document.getElementById(theFileName).offsetWidth;
        var subchannel_width = document.getElementById(theID).offsetWidth;
        new_width = channel_width-subchannel_width+30;
        P7_Snap(theFileName,theID,new_width,27);
        //alert('thisone'+new_width);
    }
}

