$(document).ready(function(){
    //--------------------------------------------------------------------------
    $(".MC_Visa").bind('click', function () {
      var href = $(this).attr('href');


      $.post(href, { 'par': '1' }, function(data) {
          var arrData = data.split('|');
          if (arrData[1] == 'false') alert(arrData[0]);
          else
           {
              //alert(arrData[0]);
              document.location = arrData[0];
           }
          });
      return false;
    });
    //--------------------------------------------------------------------------
    $(".no_zakaz").hide();
    $("#yes_zakaz").bind('click', function () {
      $(".no_zakaz").show();
      $("#yes_zakaz").hide();
      return false;
    });
});


function hide_kat (id)
  {
      var obj = document.getElementById(id);
    if (obj.style.display == 'none') obj.style.display = '';
    else obj.style.display = 'none';

  }
function hide_form (id)
  {
      var obj = document.getElementById(id);
    if (obj.style.display == 'none') obj.style.display = '';
    else obj.style.display = 'none';

  }

function show_img(img,width,height)
    {
       var a
       var b
       var url
       vidWindowWidth=width;
       vidWindowHeight=height;
       a=(screen.height-vidWindowHeight)/5;
       b=(screen.width-vidWindowWidth)/2;
       features="top="+a+",left="+b+",width="+vidWindowWidth+",height="+vidWindowHeight+",toolbar=no,menubar=no,location=no,directories=no,scrollbars=no,resizable=no";
       url="/show.php?img="+img;
       window.open(url,'',features,true);
    }
function close_img(img,width,height)
    {
	  var a
       var b
       var url
       vidWindowWidth=width;
       vidWindowHeight=height;
       a=(screen.height-vidWindowHeight)/5;
       b=(screen.width-vidWindowWidth)/2;
       features="top="+a+",left="+b+",width="+vidWindowWidth+",height="+vidWindowHeight+",toolbar=no,menubar=no,location=no,directories=no,scrollbars=no,resizable=no";
       url="/show.php?img="+img;
       window.close();
    }

function add(msg_num)
  {
       var a;
       var b;
       var url;
       var vidWindowWidth;
       var vidWindowHeight;
       var features;
       vidWindowWidth=800;
       vidWindowHeight=60;
       a=(screen.height-vidWindowHeight)/5;
       b=(screen.width-vidWindowWidth)/2;

       features="top="+a+",left="+b+",width="+vidWindowWidth+",height="+vidWindowHeight+",toolbar=no,menubar=no,location=no,directories=no,scrollbars=no,resizable=no";
       url="/part.php?id_tov="+msg_num;
       mreplywin = window.open(url,'',features);

  }
  
  var name

function window_open(src, name, width, height){
name = window.open(src, name, 'width=300' + width + ',height=300 ' + height + ',resizeable=0,menubar=0,location=0,scrollbars=1,toolbar=0,status=0');
name.focus();
}
  

