
function over(img,ref) {   document.images[img].src = ref;  }
function out(img,ref) {   document.images[img].src = ref;  }
 
function sicht(conid1,conid2) { 
document.getElementById(conid1).style.display = 'none';
document.getElementById(conid2).style.display = 'block'; 
}
function unsicht(conid1,conid2) {  
document.getElementById(conid2).style.display = 'none'; 
document.getElementById(conid1).style.display = 'block'; 
}
