function img_open(file)
{
 var file;
 window.open(file, 'img', 'width=400,height=400,scrollbars=0,toolbar=0,status=0,resizable=0, top=0');
}

function show (id)
{
 document.getElementById(id).style.display=document.getElementById(id).style.display=='block'?'none':'block';
 return false;
}