function re(nn) {
  for (i=1; i<=3; i++) {
    id = document.getElementById("el0" + i);
    if (nn==i) {
      id.style.display = 'inline'; }
    else {
      id.style.display = 'none'; }
    }
}

/* Пикчер in popup */

function WinResize() {
  i = document.getElementById('zzz');
  ww = i.width+20;
  hh = i.height+65;
  window.resizeTo(ww,hh);
}

function imgopen(imgf) {

rand_id=(Math.round(Math.random()*1000));

popup = self.open('', 'img'+rand_id, 'width=640,height=480,top=50,left=200');
popup.document.write("<html>"
+"<head>"
+"<script language=\"JavaScript\" src=\"style/script.js\" type=\"text/javascript\"></script>"
+"</head>"
+"<body style=\"margin:0\">"
 +"<table width=100% height=100% celpadding=0 cellspacing=0><tr><td align=center valign=middle><a href=javascript:window.close() title=Закрыть><img src='"+imgf+"' onload=\"WinResize()\" id=zzz></a></td></tr></table>"
+"</body>"
+"</html>");
}
