function _show_pic(_img_src, iWidth, iHeight, iTitle) {

   msgWindow=window.open("","_blank","menubar=no,status=no,scrollbars=no,resizable=no, width=" + iWidth + ",height=" + iHeight );

   msgWindow.document.write( 
	  "<html> \n <head> \n <meta http-equiv='Content-Type' content='text/html; charset=windows-1251' /> \n"
	+ "<title>" + iTitle + "</title>\n"
	+ "</head> \n <body> \n" 
	+ "<img src=" + _img_src
	+ "> \n </body> \n </html>" )
}


function show(ele) {
    var srcElement = document.getElementById(ele);
    if(srcElement != null) {
        if(srcElement.style.display == "block") {
          srcElement.style.display= 'none';
        }
        else {
          srcElement.style.display='block';
        }
    }
}

function hide(ele) {
    var srcElement = document.getElementById(ele);
    if(srcElement != null) {
        if(srcElement.style.display == "block") {
          srcElement.style.display= 'block';
        }
        else {
          srcElement.style.display='none';
        }
    }
}

