<!--

function applyDisplayCategorie(id,value,size)
{
 document.getElementById("categorieitemcontent-"+id).style.display = value;
 document.getElementById("categorieitem-"+id).style.fontSize = size;
}
function applyDisplayProduct(id,value,size)
{
 document.getElementById("productitemcontent-"+id).style.display = value;
 document.getElementById("productitem-"+id).style.fontSize = size;
}
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

//preload image
var collimg = new Image();
collimg.src = "typo3conf/ext/bebalanced/pi1/minus.gif";

function ShowHideLayer(boxID) {
/* Obtain reference for the selected boxID layer and its button */
var box = document.getElementById("box"+boxID);
var boxbtn = document.getElementById("btn"+boxID);
/* If the selected box is currently invisible, show it */
if(box.style.display == "none" || box.style.display=="") {
box.style.display = "block";
boxbtn.src = collimg.src;
}
/* otherwise hide it */
else {
box.style.display = "none";
boxbtn.src = "/typo3conf/ext/bebalanced/pi1/plus.gif";
}
}

//-->
