var common = {
        togglediv : function(id){
            var tempObj = document.getElementById(id);
            if (tempObj.style.display == 'none'){
              tempObj.style.display = 'block';
            }else{
              tempObj.style.display = 'none';
            }        
        },
        showdiv : function(id){
          document.getElementById(id).style.display = 'block';
        },
        hidediv : function(id){
          document.getElementById(id).style.display = 'none';
        },
        test : function(){
         alert('hello, world'); 
        }
}
