function hid(id)
{
   
     var x = document.getElementById(id)
     x.style.display = 'none'
    // x.style.top = window.event.y - 25
     //x.style.left = window.event.x + 25
}
function vis(id)
{
   
     var x = document.getElementById(id)
     x.style.display = 'block'
    // x.style.top = window.event.y - 25
     //x.style.left = window.event.x + 25
     inc(id)
}


function inc(id){
 var x = document.getElementById(id)
x.style.position='absolute'
x.style.left =x.style.left+322
x.style.top =x.style.top+159

}

