function show(i)
{
    var dc=document.getElementById("image"+i);
    if (dc.style.position=='fixed')
    {   
        dc.title='Нажмите чтобы увеличить изображение ';    
        dc.style.top='10px';
        dc.style.right='10px';
        dc.style.position='static';
        dc.style.width='200px';
        dc.style.height='200px';
    }
    else
    {
        dc.title='Нажмите чтобы уменшить изображение ' ;
        dc.style.top='40px';
        dc.style.right='40px';
        dc.style.position='fixed';
        dc.style.width='450px';
        dc.style.height='450px';
    }
}
