function show(id)
{
//pic='bpic_'+id;
//div='bdiv_'+id;
src='/i/photos/2005/'+id+'.jpg';

document.getElementById('bdiv').style.display='block'; 
document.getElementById('bpic').src=src; 
}

function hide(id)
{
pic='bpic_'+id;
div='bdiv_'+id;
document.getElementById('bdiv').style.display='none';
document.getElementById('bpic').src='';
}


var param = "copyhistory=no,directories=no,menubar=yes,location=no,resizable=yes,scrollbars=yes";

function window_open(url, name, w, h)
{
    new_window = window.open(url, name, 'width=' + w + ', height=' + h + ", " + param);
    new_window.focus();
}

function change_img_src(img, url)
{
    img.src=url;
}


function vis (a, b)
    {
    document.getElementById(a).style.display='block';
    
    
    document.getElementById(b).style.display='none';
    
    }
