/*

webdev v1.0
Universitas Indonesia

http://www.ui.ac.id

Licensed under : Free

*/

function showbox(thechosenone) {
       var box = document.getElementsByName("box");
       for(var x=0; x<box.length; x++) { 
               if (box[x].id == thechosenone) {
                       box[x].style.display = 'block';
               }
               else {
                       box[x].style.display = 'none';
               }
       }
}
