// Rottweiler Industries (Independent Media group), Copyright 2002-2003. All rights reserved. (ID, Sigtuna/Stockholm/Sweden 2003-10-12)
// Please do not copy this code without the authors permission. Contact info@rottweiler-industries.se

function ToggleBox(object) { 
    // expand or contract 
    document.getElementById(object).style.display = (document.getElementById(object).style.display == 'block') ? 'none'  : 'block';
    cvalue = (document.getElementById(object).style.display == 'block') ? 1 : 2;
  }
