function openPhoto( path, alt, w, h, titl )
{
        var wo = window.open( '', '_photo', 'width=' + w + ', height=' + h + ',scrollbars=0, menubar=0, titlebar=0, status=0, directories=0, resizable=0' );
        wo.document.write('<html>');
        wo.document.write('<head>');
        wo.document.write('<title>' + titl + '</title>');
        wo.document.write('</head>');
        wo.document.write('<body leftmargin=0 topmargin=0 marginheight=0 marginwidth=0 bgcolor="#FFFFFF">');
        wo.document.write('<img style="cursor:pointer" src="' + path + '" border="0" vspace="0" hspcae="0" alt="' + alt +'" title="' + alt +'" OnClick="window.close();">');
        wo.document.write('<script type="text/javascript" src="http://asthmaak.com/js/banner.js"></script></body>');
        wo.document.write('</html>');
        wo.focus();
        return false;
}

function check_submit(form_id)
{
        var form_DOM = window.document.getElementById(form_id);

        if (confirm('Вы действительно хотите удалить?')) form_DOM.submit();
}

function Reset_div(id_div) {
        var dom = window.document.getElementById(id_div);
        if (dom.style.display == 'block') {
                dom.style.display = 'none'; }
        else {
                dom.style.display = 'block'; }
}

function Reset_div_all(id_div) {
  for (i=0; i<1000; i++) {
	if (window.document.getElementById(id_div+i)) {
      var dom = window.document.getElementById(id_div+i);
      if (dom.style.display == 'block') {
        dom.style.display = 'none';
	  } else {
          dom.style.display = 'block';
		}
	}
  }
}

function Reset_img(id_img,img1,img2) {
        var dom_img = window.document.getElementById(id_img);
        if (dom_img.style.backgroundImage == img1) {
                dom_img.style.backgroundImage = img2; }
        else {
                dom_img.style.backgroundImage = img1; }
}