// Открыть изображение в отдельном окне
function openPic(sName,sAlt,iW,iH)
{
  var pop = window.open(sName,"_blank",'width='+iW+',height='+iH+',toolbar=no,location=no,status=no,menubar=no,directories=no,scrollbars=no,resizable=no');
  pop.document.write('<html><head><title>'+sAlt+'</title></head><body style="padding: 0px;margin: 0px;"><a href="javascript:window.close();"><img src="/'+sName+'" width='+iW+' height='+iH+' alt="" border="0"></a></body></html>');
}
/*
function openPic(sName,iW,iH)
{ if(sName=='') return;
  window.open(sName,
              '_blank',
              "width="+(iW+20)+
              ",height="+(iH+20)+
              ",toolbar=no,status=no,menubar=no, scrollbars=no,resizable=no, location=no");
}
*/
var obj;
function fnShowHide(element)
{
  if(document.getElementById) obj=document.getElementById(element);
  else obj=document.all[element];
  
  if(obj.style.display=='block') obj.style.display="none";
  else obj.style.display="block";
}

