function showhide(what,what2){
if (what.style.display=='none'){
what.style.display='';
}
else{
what.style.display='none'
}
}
