function show_photo(photo, width, height){
        var w = window.open('about:blank', '1', config='top=50,left=50,height='+height+', width='+width+', status=0, titlebar=0, menubar=0, resize=0, scrollbars=0');
        w.document.open();
        w.document.write('<html><head><title>Ôîòî</title></head>');
        w.document.write('<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0"><a href=# onclick=\"self.close();\">');
        w.document.write('<img border=0 src="'+photo+'"></a></body></html>');
        w.document.close();
}

function selectAll(mark) {
  for (i = 0; i < document.forms['form1'].elements.length; i++){
    var item = document.forms['form1'].elements[i];
    item.checked = mark;
  }
}
