var currentshown=1;
function showDiv(thediv){
document.getElementById('div'+currentshown).style.display='none';
document.getElementById('div'+thediv).style.display='block';
currentshown=thediv;
}
