function photo(image,w,h) {
  path = "images/hist/"+image+"_big.jpg";
  ph = open("", "pop_photo", "width="+w+",height="+h+",scrollbars=no,resizable=no"); 
  ph.document.open();
  ph.document.write('<html><head><title>Фотогаллерея</title></head><body style="margin:0px; cursor:hand;" onclick=self.close();><img src='+path+' width='+w+' height='+h+'></body></html>');
  ph.document.close();  
  ph.moveTo((screen.width-w)/2,(screen.height-h)/2-20);
}

function expand(idtypeproduct) {
   var cell = document.all['pro_'+idtypeproduct];
   var sgn = document.all['sgn_'+idtypeproduct];
   cell.style.display == 'none' ? cell.style.display = 'block' : cell.style.display ='none';
   cell.style.display == 'block' ? sgn.src = '/images/icon_1_plus.gif' : sgn.src ='/images/icon_1_minus.gif';
}

function expand_msg_grp(idtypeproduct) {
   var cell = document.all['pro_'+idtypeproduct];
   var new_msg = document.all['new_msg_'+idtypeproduct];
   var header = document.all['header_'+idtypeproduct];

   cell.style.display == 'none' ? cell.style.display = 'block' : cell.style.display ='none';
   header.style.backgroundColor == '' ? header.style.backgroundColor = '#EAEFF3' : header.style.backgroundColor = '';
   new_msg.style.display == 'none' ? new_msg.style.display = 'block' : new_msg.style.display ='none';
}

function pop(url, w, h) {
  var options = "width=" + w + ",height=" + h + ",fullscreen=0,toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0";
  w_var = (Math.round(Math.random()*1000));
  popup = window.open(url, "win"+w_var, options);
  popup.focus();
}