function newattributs(obj,fgcol,bgcol,bratt,cur)
{
if(obj.style)
{
obj.style.color=fgcol; //Forground-Color
obj.style.backgroundColor=bgcol; //Background-Color
obj.style.border=bratt; //Border-Attribute
obj.style.cursor=cur; //Cursor-Attribut
}
}

function NewImage(obj,bgimg)
{
if(obj.style)
{
obj.style.backgroundImage=bgimg; //Background-Image
}
}

function NewColor(obj,bgcol)
{
if(obj.style)
{
obj.style.backgroundColor=bgcol; //Background-Color
}
}
