var hexcode_array = new Array('00','11','22','33','44','55','66','77','88','99','AA','BB','CC','DD','EE','FF');

function colorsAll(RGB)
{
   //text
   if(window.document.pickerform.chooser[0].checked == true)
   {
      text_rgb=RGB;
      window.document.pickerform.sitetext.value = text_rgb;
      window.document.getElementById("site_text").style.color = "#" + text_rgb;
   }
   //back
   else if(window.document.pickerform.chooser[1].checked == true)
   {
      back_rgb=RGB;
      window.document.pickerform.body_bg.value = back_rgb;
      window.document.getElementById("bground").style.backgroundColor = "#" + back_rgb;
   }
   //container
   else if(window.document.pickerform.chooser[2].checked == true)
   {
      container_rgb=RGB;
      window.document.pickerform.container_bg.value = container_rgb;
      window.document.getElementById("container").style.backgroundColor = "#" + container_rgb;
   }
   //menue font
   else if(window.document.pickerform.chooser[3].checked == true)
   {
      slink=RGB;
      window.document.pickerform.font_color1.value = slink;
      window.document.getElementById("site_link1").style.color = "#" + slink;
      window.document.getElementById("site_link2").style.color = "#" + slink;
      window.document.getElementById("site_link3").style.color = "#" + slink;
      window.document.getElementById("site_link4").style.color = "#" + slink;
   }
   //background of menue
   else if(window.document.pickerform.chooser[4].checked == true)
   {
      menu_back=RGB;
      //alert (menu_back);
      window.document.pickerform.menu_bg.value = menu_back;
      window.document.getElementById("menu_bg1").style.backgroundColor = "#" + menu_back;
      window.document.getElementById("menu_bg2").style.backgroundColor = "#" + menu_back;
      window.document.getElementById("menu_bg3").style.backgroundColor = "#" + menu_back;
      window.document.getElementById("menu_bg4").style.backgroundColor = "#" + menu_back;
   }
}
 
function chooserMode(MODE)
{
   if(MODE == "sitetext") { var RGB = text_rgb; }
   else if(MODE == "bground") { var RGB = back_rgb; }
   else if(MODE == "container_bg") { var RGB = container_rgb; }
   else if(MODE == "font_color1") { var RGB = slink; }
   else if(MODE == "menu_bg") { var RGB = menu_back; }
}





