function show(el)
{
document.getElementById(el).className='show';
}
function hide(el)
{
document.getElementById(el).className='hide';
}