function showhide(what,what2){
	if (what.style.display=='none'){
		what.style.display='';
		what2.src = "Images/minus.gif";
	}else{
		what.style.display='none'
		what2.src = "Images/plus.gif";
	}
}
