// JavaScript Switcher Productinformatie

var mainTableHeight = 2000;

function switcher (e)
{
i = 'image'+e; i = document.getElementById(i);
e = 'content'+e; e = document.getElementById(e);
table = document.getElementById('mainTable');

if(table != null){
hdiv = e.style.height;
hdiv = hdiv.replace(/px/g, "");

if(hdiv > 0){
hdiv = parseInt(hdiv);
hdiv = hdiv * 2;
}else{
hdiv = 800;
}

}

if( e.style.display== 'block')
{

if(table != null){
mainTableHeight = mainTableHeight - hdiv;
table.style.height = mainTableHeight;
}

e.style.display = "none";
i.src = "/css/ts24/plus.png";
}

else
{
if(table != null){
mainTableHeight = mainTableHeight + hdiv;
table.style.height = mainTableHeight;
}
e.style.display ="block";
i.src = "/css/ts24/min.png";
}
}
