function opendwin(descript,name) {
  fotowin=window.open(descript, name, "width=700,height=600,dependent,scrollbars,resizable,menubar,top=10,left=10");
  fotowin.focus();
}

function openwin(descript) {
  fotowin=window.open(descript, 'hint', "width=700,height=600,dependent,scrollbars,resizable,menubar,top=10,left=10");
  fotowin.focus();
}
function showpicture(descript) {
  fotowin=window.open(descript, 'hint', 'width=840,height=600,dependent,scrollbars,resizable,menubar,top=60,left=30');
  fotowin.focus();
}
function run() {}

function show(name) {
 o = document.all?document.all[name]:document.getElementById(name);
 o.style.display = (o.style.display=="block")?"none":"block";
}

function getHeight()
{
// Определение браузера
IE = (document.all); // Internet Explorer?
NC = (document.layers); // Netscape?
Opera = (document.getElementById); // Opera?

if (IE || Opera) send = document.body.clientHeight;
if (NC) send = window.innerHeight;
return send;
}

function getWidth()
{
// Определение браузера
IE = (document.all); // Internet Explorer?
NC = (document.layers); // Netscape?
Opera = (document.getElementById); // Opera?

if (IE || Opera) send = document.body.clientWidth;
if (NC) send = window.innerWidth;
return send;
}
