function klappe(id) {
var klappText = document.getElementById('k' + id);
var klappBild = document.getElementById('pic' + id);
if (klappText.style.display == 'none') {
  klappText.style.display = '';
  klappBild.src = 'pic/minus.gif';
} else {
  klappText.style.display = 'none';
  klappBild.src = 'pic/plus.gif';
}
}

function klappe_news(id) {
var klappText = document.getElementById('k' + id);
var klappBild = document.getElementById('pic' + id);
if (klappText.style.display == 'none') {
  klappText.style.display = '';
  klappBild.src = 'pic/minus.gif';
} else {
  klappText.style.display = 'none';
  klappBild.src = 'pic/plus.gif';
}
}

function imgFit (img, maxImgWidth)  { 

   if (img.width > maxImgWidth) { 
      img.height = Math.round(((maxImgWidth)/img.width)*img.height); 
      img.width = maxImgWidth; 
      img.style.cursor = '-moz-zoom-in';
	  img.title = 'Click on image to maximize it'; 
   } else if (img.width == maxImgWidth && img.width < img.naturalWidth) { 
      img.height = img.naturalHeight; 
      img.width = img.naturalWidth; 
	  img.style.cursor = '-moz-zoom-out';
	  img.title = 'Click on image to minimize it'; 
   }       
      if (typeof img.naturalWidth == 'undefined') { 
      img.naturalHeight = img.height; 
      img.naturalWidth = img.width; 
   } 
}

var checkflag = 'false';
function check(field) {
if (checkflag == 'false') {
for (i = 0; i < field.length; i++) {
field[i].checked = true;}
checkflag = 'true';
return 'Uncheck All'; }
else {
for (i = 0; i < field.length; i++) {
field[i].checked = false; }
checkflag = 'false';
return 'Check All'; }
}