﻿

function ChangeObjStyleWithContainer(Obj,ObjStyle,Container,ContainerStyle)
{
    Obj.className = ObjStyle;
    var obj2 = document.getElementById(Container);
    obj2.className = ContainerStyle;
    
}

function ChangeObjStyle(Obj,ObjStyle)
{
    Obj.className = ObjStyle;
}

