// JavaScript Document
function pressColorSet(colors)
{
if(colors){
document.getElementById('bild').style.backgroundColor=colors;
document.getElementById('bildsw').style.backgroundColor=colors;
}else{
document.getElementById('bild').style.backgroundColor='#000000';
document.getElementById('bildsw').style.backgroundColor='#000000';
}
}

