//-------------------------------------nv_setcookie(n,nware)
function nv_setcookie(x,nware)
 {
  if(!(confirm('Вы хотите добавить "'+nware+'" в лист скидок.'+"\n"+'Продолжить?'))) {return false;}
  nv_set_cookie('ids',x);
 }
//-------------------------------------nv_opwin(w, h, id, fnm)
function nv_opwin(w, h, id, fnm)
 {
  f = 'n_photo.php?id='+id+'&fnm='+fnm+'&width='+w+'&height='+(h+45);
  w += 55; h += 165; 
//alert(w+'---'+h+'---'+id+'---'+fnm);
  var n=navigator;
  n=(n.appName.substring(0,2)=="Mi")?1:0; 
  w<500?(w=500):w;
  prop = 'toobar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+w+',height='+h;
  if (n)
    {
     wo = window.open('','Photo',prop);
     wo.document.write('<script language="Javascript">'+"\n"+'window.close();'+"\n"+'</script>');
    }
  wo = window.open('','Photo',prop);
  wo.document.write('<html><head><title>Loading...</title></head><body bgcolor="#FFFFFF"><table width=100% height=100%><tr><td align="center" valign="middle"><font style="color:#0000AA;font-family:Tahoma,Verdina,Arial,Geneva;font-weight:bold;font-size:16pt;"><b>Loading ...</b></font></td></tr></table></body></html>');
  wo = window.open(f,'Photo',prop);
  wo.focus();
 } 
