// JavaScript Document

function openPic(img,title)
{
var wn=window.open('/img/nw.html'+'?'+encodeURIComponent(img)+'&'+encodeURIComponent(title),'win','resizable,width=400,height=200,screenX=100 ,screenY=100,top=10,left=200')
wn.focus()
return false
}


function showMe(picname)
{
document.r.src = "../../img/" + picname;
}


function show_by_id(id, show) {
  if(show) {
    document.getElementById(id).style.display = 'block';
  } else {
    document.getElementById(id).style.display = 'none';
  }
} 