//{literal}
 var keyStr = "ABCDEFGHIJKLMNOP" +
               "QRSTUVWXYZabcdef" +
               "ghijklmnopqrstuv" +
               "wxyz0123456789+/" +
               "=";
 function decode(input) {
     var output = "";
     var chr1, chr2, chr3 = "";
     var enc1, enc2, enc3, enc4 = "";
     var i = 0;
     var basetest = /[^A-Za-z0-9\+\/\=]/g;
     if (basetest.exec(input)) {
        alert("Invalid");
     }
     input = input.replace(/[^A-Za-z0-9\+\/\=]/g, "");
     do {
        enc1 = keyStr.indexOf(input.charAt(i++));
        enc2 = keyStr.indexOf(input.charAt(i++));
        enc3 = keyStr.indexOf(input.charAt(i++));
        enc4 = keyStr.indexOf(input.charAt(i++));
        chr1 = (enc1 << 2) | (enc2 >> 4);
        chr2 = ((enc2 & 15) << 4) | (enc3 >> 2);
        chr3 = ((enc3 & 3) << 6) | enc4;
        output = output + String.fromCharCode(chr1);
        if (enc3 != 64) {
           output = output + String.fromCharCode(chr2);
        }
        if (enc4 != 64) {
           output = output + String.fromCharCode(chr3);
        }
        chr1 = chr2 = chr3 = "";
        enc1 = enc2 = enc3 = enc4 = "";
     } while (i < input.length);
     return unescape(output);
  }
  function createPlayer(videoFile){
        document.write(decode('PGVtYmVkIHdpZHRoPSI4MDAiIGhlaWdodD0iNjE5IiBwbHVnaW5zcGFnZT0iaHR0cDovL3d3dy5tYWNyb21lZGlhLmNvbS9nby9nZXRmbGFzaHBsYXllciIgc3JjPSJodHRwOi8vd3d3LnByb2dyYW1sYW1hdHYuY29tL21vZEVkaXRvci9wbGF5ZXIuc3dmIiB0eXBlPSJhcHBsaWNhdGlvbi94LXNob2Nrd2F2ZS1mbGFzaCIgZmxhc2h2YXJzPSJmaWxlPWh0dHA6Ly93d3cucHJvZ3JhbWxhbWF0di5jb20vcHR2ZGVwby8=')+decode(videoFile)+decode('Ij48L2VtYmVkPg=='));
  }
  function jumpToSiparis(){
    $('html, body').animate({ scrollTop: $('#siparisForm').offset().top }, 3000);
    $('#tablar').triggerTab(5);
  }
//{/literal}