﻿// >>>> Do not change.

// ajax.js:
Function.__typeName="Function";Function.__class=true;Function.createCallback=function(b,a){return function(){var e=arguments.length;if(e>0){var d=[];for(var c=0;c<e;c++)d[c]=arguments[c];d[e]=a;return b.apply(this,d)}return b.call(this,a)}};Function.createDelegate=function(a,b){return function(){return b.apply(a,arguments)}};Function.emptyFunction=Function.emptyMethod=function(){};Function._validateParams=function(e,c){var a;a=Function._validateParameterCount(e,c);if(a){a.popStackFrame();return a}for(var b=0;b<e.length;b++){var d=c[Math.min(b,c.length-1)],f=d.name;if(d.parameterArray)f+="["+(b-c.length+1)+"]";a=Function._validateParameter(e[b],d,f);if(a){a.popStackFrame();return a}}return null};Function._validateParameterCount=function(e,a){var c=a.length,d=0;for(var b=0;b<a.length;b++)if(a[b].parameterArray)c=Number.MAX_VALUE;else if(!a[b].optional)d++;if(e.length<d||e.length>c){var f=Error.parameterCount();f.popStackFrame();return f}return null};Function._validateParameter=function(c,a,h){var b,g=a.type,l=!!a.integer,k=!!a.domElement,m=!!a.mayBeNull;b=Function._validateParameterType(c,g,l,k,m,h);if(b){b.popStackFrame();return b}var e=a.elementType,f=!!a.elementMayBeNull;if(g===Array&&typeof c!=="undefined"&&c!==null&&(e||!f)){var j=!!a.elementInteger,i=!!a.elementDomElement;for(var d=0;d<c.length;d++){var n=c[d];b=Function._validateParameterType(n,e,j,i,f,h+"["+d+"]");if(b){b.popStackFrame();return b}}}return null};Function._validateParameterType=function(b,c,l,k,i,d){var a;if(typeof b==="undefined")if(i)return null;else{a=Error.argumentUndefined(d);a.popStackFrame();return a}if(b===null)if(i)return null;else{a=Error.argumentNull(d);a.popStackFrame();return a}if(c&&c.__enum){if(typeof b!=="number"){a=Error.argumentType(d,Object.getType(b),c);a.popStackFrame();return a}if(b%1===0){var e=c.prototype;if(!c.__flags||b===0){for(var h in e)if(e[h]===b)return null}else{var j=b;for(var h in e){var f=e[h];if(f===0)continue;if((f&b)===f)j-=f;if(j===0)return null}}}a=Error.argumentOutOfRange(d,b,String.format(Sys.Res.enumInvalidValue,b,c.getName()));a.popStackFrame();return a}if(k&&(typeof b.nodeType!=="number"||b.nodeType===3)){var g=b.ownerDocument||b.document||b;if(g!=b){var m=g.defaultView||g.parentWindow;if(m!=b){a=Error.argument(d,Sys.Res.argumentDomElement);a.popStackFrame();return a}}else if(typeof g.body==="undefined"){a=Error.argument(d,Sys.Res.argumentDomElement);a.popStackFrame();return a}}if(c&&!c.isInstanceOfType(b)){a=Error.argumentType(d,Object.getType(b),c);a.popStackFrame();return a}if(c===Number&&l)if(b%1!==0){a=Error.argumentOutOfRange(d,b,Sys.Res.argumentInteger);a.popStackFrame();return a}return null};Error.__typeName="Error";Error.__class=true;Error.create=function(d,b){var a=new Error(d);a.message=d;if(b)for(var c in b)a[c]=b[c];a.popStackFrame();return a};Error.argument=function(a,c){var b="Sys.ArgumentException: "+(c?c:Sys.Res.argument);if(a)b+="\n"+String.format(Sys.Res.paramName,a);var d=Error.create(b,{name:"Sys.ArgumentException",paramName:a});d.popStackFrame();return d};Error.argumentNull=function(a,c){var b="Sys.ArgumentNullException: "+(c?c:Sys.Res.argumentNull);if(a)b+="\n"+String.format(Sys.Res.paramName,a);var d=Error.create(b,{name:"Sys.ArgumentNullException",paramName:a});d.popStackFrame();return d};Error.argumentOutOfRange=function(c,a,d){var b="Sys.ArgumentOutOfRangeException: "+(d?d:Sys.Res.argumentOutOfRange);if(c)b+="\n"+String.format(Sys.Res.paramName,c);if(typeof a!=="undefined"&&a!==null)b+="\n"+String.format(Sys.Res.actualValue,a);var e=Error.create(b,{name:"Sys.ArgumentOutOfRangeException",paramName:c,actualValue:a});e.popStackFrame();return e};Error.argumentType=function(d,c,b,e){var a="Sys.ArgumentTypeException: ";if(e)a+=e;else if(c&&b)a+=String.format(Sys.Res.argumentTypeWithTypes,c.getName(),b.getName());else a+=Sys.Res.argumentType;if(d)a+="\n"+String.format(Sys.Res.paramName,d);var f=Error.create(a,{name:"Sys.ArgumentTypeException",paramName:d,actualType:c,expectedType:b});f.popStackFrame();return f};Error.argumentUndefined=function(a,c){var b="Sys.ArgumentUndefinedException: "+(c?c:Sys.Res.argumentUndefined);if(a)b+="\n"+String.format(Sys.Res.paramName,a);var d=Error.create(b,{name:"Sys.ArgumentUndefinedException",paramName:a});d.popStackFrame();return d};Error.format=function(a){var c="Sys.FormatException: "+(a?a:Sys.Res.format),b=Error.create(c,{name:"Sys.FormatException"});b.popStackFrame();return b};Error.invalidOperation=function(a){var c="Sys.InvalidOperationException: "+(a?a:Sys.Res.invalidOperation),b=Error.create(c,{name:"Sys.InvalidOperationException"});b.popStackFrame();return b};Error.notImplemented=function(a){var c="Sys.NotImplementedException: "+(a?a:Sys.Res.notImplemented),b=Error.create(c,{name:"Sys.NotImplementedException"});b.popStackFrame();return b};Error.parameterCount=function(a){var c="Sys.ParameterCountException: "+(a?a:Sys.Res.parameterCount),b=Error.create(c,{name:"Sys.ParameterCountException"});b.popStackFrame();return b};Error.prototype.popStackFrame=function(){if(typeof this.stack==="undefined"||this.stack===null||typeof this.fileName==="undefined"||this.fileName===null||typeof this.lineNumber==="undefined"||this.lineNumber===null)return;var a=this.stack.split("\n"),c=a[0],e=this.fileName+":"+this.lineNumber;while(typeof c!=="undefined"&&c!==null&&c.indexOf(e)===-1){a.shift();c=a[0]}var d=a[1];if(typeof d==="undefined"||d===null)return;var b=d.match(/@(.*):(\d+)$/);if(typeof b==="undefined"||b===null)return;this.fileName=b[1];this.lineNumber=parseInt(b[2]);a.shift();this.stack=a.join("\n")};Object.__typeName="Object";Object.__class=true;Object.getType=function(b){var a=b.constructor;if(!a||typeof a!=="function"||!a.__typeName||a.__typeName==="Object")return Object;return a};Object.getTypeName=function(a){return Object.getType(a).getName()};String.__typeName="String";String.__class=true;String.prototype.endsWith=function(a){return this.substr(this.length-a.length)===a};String.prototype.startsWith=function(a){return this.substr(0,a.length)===a};String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g,"")};String.prototype.trimEnd=function(){return this.replace(/\s+$/,"")};String.prototype.trimStart=function(){return this.replace(/^\s+/,"")};String.format=function(){return String._toFormattedString(false,arguments)};String.localeFormat=function(){return String._toFormattedString(true,arguments)};String._toFormattedString=function(l,j){var c="",e=j[0];for(var a=0;true;){var f=e.indexOf("{",a),d=e.indexOf("}",a);if(f<0&&d<0){c+=e.slice(a);break}if(d>0&&(d<f||f<0)){c+=e.slice(a,d+1);a=d+2;continue}c+=e.slice(a,f);a=f+1;if(e.charAt(a)==="{"){c+="{";a++;continue}if(d<0)break;var h=e.substring(a,d),g=h.indexOf(":"),k=parseInt(g<0?h:h.substring(0,g),10)+1,i=g<0?"":h.substring(g+1),b=j[k];if(typeof b==="undefined"||b===null)b="";if(b.toFormattedString)c+=b.toFormattedString(i);else if(l&&b.localeFormat)c+=b.localeFormat(i);else if(b.format)c+=b.format(i);else c+=b.toString();a=d+1}return c};Boolean.__typeName="Boolean";Boolean.__class=true;Boolean.parse=function(b){var a=b.trim().toLowerCase();if(a==="false")return false;if(a==="true")return true};Date.__typeName="Date";Date.__class=true;Date._appendPreOrPostMatch=function(e,b){var d=0,a=false;for(var c=0,g=e.length;c<g;c++){var f=e.charAt(c);switch(f){case "'":if(a)b.append("'");else d++;a=false;break;case "\\":if(a)b.append("\\");a=!a;break;default:b.append(f);a=false}}return d};Date._expandFormat=function(a,b){if(!b)b="F";if(b.length===1)switch(b){case "d":return a.ShortDatePattern;case "D":return a.LongDatePattern;case "t":return a.ShortTimePattern;case "T":return a.LongTimePattern;case "F":return a.FullDateTimePattern;case "M":case "m":return a.MonthDayPattern;case "s":return a.SortableDateTimePattern;case "Y":case "y":return a.YearMonthPattern;default:throw Error.format(Sys.Res.formatInvalidString)}return b};Date._expandYear=function(c,a){if(a<100){var b=(new Date).getFullYear();a+=b-b%100;if(a>c.Calendar.TwoDigitYearMax)return a-100}return a};Date._getParseRegExp=function(b,e){if(!b._parseRegExp)b._parseRegExp={};else if(b._parseRegExp[e])return b._parseRegExp[e];var c=Date._expandFormat(b,e);c=c.replace(/([\^\$\.\*\+\?\|\[\]\(\)\{\}])/g,"\\\\$1");var a=new Sys.StringBuilder("^"),j=[],f=0,i=0,h=Date._getTokenRegExp(),d;while((d=h.exec(c))!==null){var l=c.slice(f,d.index);f=h.lastIndex;i+=Date._appendPreOrPostMatch(l,a);if(i%2===1){a.append(d[0]);continue}switch(d[0]){case "dddd":case "ddd":case "MMMM":case "MMM":a.append("(\\D+)");break;case "tt":case "t":a.append("(\\D*)");break;case "yyyy":a.append("(\\d{4})");break;case "fff":a.append("(\\d{3})");break;case "ff":a.append("(\\d{2})");break;case "f":a.append("(\\d)");break;case "dd":case "d":case "MM":case "M":case "yy":case "y":case "HH":case "H":case "hh":case "h":case "mm":case "m":case "ss":case "s":a.append("(\\d\\d?)");break;case "zzz":a.append("([+-]?\\d\\d?:\\d{2})");break;case "zz":case "z":a.append("([+-]?\\d\\d?)")}Array.add(j,d[0])}Date._appendPreOrPostMatch(c.slice(f),a);a.append("$");var k=a.toString().replace(/\s+/g,"\\s+"),g={"regExp":k,"groups":j};b._parseRegExp[e]=g;return g};Date._getTokenRegExp=function(){return /dddd|ddd|dd|d|MMMM|MMM|MM|M|yyyy|yy|y|hh|h|HH|H|mm|m|ss|s|tt|t|fff|ff|f|zzz|zz|z/g};Date.parseLocale=function(a){return Date._parse(a,Sys.CultureInfo.CurrentCulture,arguments)};Date.parseInvariant=function(a){return Date._parse(a,Sys.CultureInfo.InvariantCulture,arguments)};Date._parse=function(g,c,h){var e=false;for(var a=1,i=h.length;a<i;a++){var f=h[a];if(f){e=true;var b=Date._parseExact(g,f,c);if(b)return b}}if(!e){var d=c._getDateTimeFormats();for(var a=0,i=d.length;a<i;a++){var b=Date._parseExact(g,d[a],c);if(b)return b}}return null};Date._parseExact=function(s,y,j){s=s.trim();var m=j.dateTimeFormat,v=Date._getParseRegExp(m,y),x=(new RegExp(v.regExp)).exec(s);if(x!==null){var w=v.groups,f=null,c=null,h=null,g=null,d=0,n=0,o=0,e=0,k=null,r=false;for(var p=0,z=w.length;p<z;p++){var a=x[p+1];if(a)switch(w[p]){case "dd":case "d":h=parseInt(a,10);if(h<1||h>31)return null;break;case "MMMM":c=j._getMonthIndex(a);if(c<0||c>11)return null;break;case "MMM":c=j._getAbbrMonthIndex(a);if(c<0||c>11)return null;break;case "M":case "MM":var c=parseInt(a,10)-1;if(c<0||c>11)return null;break;case "y":case "yy":f=Date._expandYear(m,parseInt(a,10));if(f<0||f>9999)return null;break;case "yyyy":f=parseInt(a,10);if(f<0||f>9999)return null;break;case "h":case "hh":d=parseInt(a,10);if(d===12)d=0;if(d<0||d>11)return null;break;case "H":case "HH":d=parseInt(a,10);if(d<0||d>23)return null;break;case "m":case "mm":n=parseInt(a,10);if(n<0||n>59)return null;break;case "s":case "ss":o=parseInt(a,10);if(o<0||o>59)return null;break;case "tt":case "t":var u=a.toUpperCase();r=u===m.PMDesignator.toUpperCase();if(!r&&u!==m.AMDesignator.toUpperCase())return null;break;case "f":e=parseInt(a,10)*100;if(e<0||e>999)return null;break;case "ff":e=parseInt(a,10)*10;if(e<0||e>999)return null;break;case "fff":e=parseInt(a,10);if(e<0||e>999)return null;break;case "dddd":g=j._getDayIndex(a);if(g<0||g>6)return null;break;case "ddd":g=j._getAbbrDayIndex(a);if(g<0||g>6)return null;break;case "zzz":var q=a.split(/:/);if(q.length!==2)return null;var i=parseInt(q[0],10);if(i<-12||i>13)return null;var l=parseInt(q[1],10);if(l<0||l>59)return null;k=i*60+(a.startsWith("-")?-l:l);break;case "z":case "zz":var i=parseInt(a,10);if(i<-12||i>13)return null;k=i*60}}var b=new Date;if(f===null)f=b.getFullYear();if(c===null)c=b.getMonth();if(h===null)h=b.getDate();b.setFullYear(f,c,h);if(b.getDate()!==h)return null;if(g!==null&&b.getDay()!==g)return null;if(r&&d<12)d+=12;b.setHours(d,n,o,e);if(k!==null){var t=b.getMinutes()-(k+b.getTimezoneOffset());b.setHours(b.getHours()+parseInt(t/60,10),t%60)}return b}};Date.prototype.format=function(a){return this._toFormattedString(a,Sys.CultureInfo.InvariantCulture)};Date.prototype.localeFormat=function(a){return this._toFormattedString(a,Sys.CultureInfo.CurrentCulture)};Date.prototype._toFormattedString=function(e,h){if(!e||e.length===0||e==="i")if(h&&h.name.length>0)return this.toLocaleString();else return this.toString();var d=h.dateTimeFormat;e=Date._expandFormat(d,e);var a=new Sys.StringBuilder,b;function c(a){if(a<10)return "0"+a;return a.toString()}function g(a){if(a<10)return "00"+a;if(a<100)return "0"+a;return a.toString()}var j=0,i=Date._getTokenRegExp();for(;true;){var l=i.lastIndex,f=i.exec(e),k=e.slice(l,f?f.index:e.length);j+=Date._appendPreOrPostMatch(k,a);if(!f)break;if(j%2===1){a.append(f[0]);continue}switch(f[0]){case "dddd":a.append(d.DayNames[this.getDay()]);break;case "ddd":a.append(d.AbbreviatedDayNames[this.getDay()]);break;case "dd":a.append(c(this.getDate()));break;case "d":a.append(this.getDate());break;case "MMMM":a.append(d.MonthNames[this.getMonth()]);break;case "MMM":a.append(d.AbbreviatedMonthNames[this.getMonth()]);break;case "MM":a.append(c(this.getMonth()+1));break;case "M":a.append(this.getMonth()+1);break;case "yyyy":a.append(this.getFullYear());break;case "yy":a.append(c(this.getFullYear()%100));break;case "y":a.append(this.getFullYear()%100);break;case "hh":b=this.getHours()%12;if(b===0)b=12;a.append(c(b));break;case "h":b=this.getHours()%12;if(b===0)b=12;a.append(b);break;case "HH":a.append(c(this.getHours()));break;case "H":a.append(this.getHours());break;case "mm":a.append(c(this.getMinutes()));break;case "m":a.append(this.getMinutes());break;case "ss":a.append(c(this.getSeconds()));break;case "s":a.append(this.getSeconds());break;case "tt":a.append(this.getHours()<12?d.AMDesignator:d.PMDesignator);break;case "t":a.append((this.getHours()<12?d.AMDesignator:d.PMDesignator).charAt(0));break;case "f":a.append(g(this.getMilliseconds()).charAt(0));break;case "ff":a.append(g(this.getMilliseconds()).substr(0,2));break;case "fff":a.append(g(this.getMilliseconds()));break;case "z":b=this.getTimezoneOffset()/60;a.append((b>=0?"+":"-")+Math.floor(Math.abs(b)));break;case "zz":b=this.getTimezoneOffset()/60;a.append((b>=0?"+":"-")+c(Math.floor(Math.abs(b))));break;case "zzz":b=this.getTimezoneOffset()/60;a.append((b>=0?"+":"-")+c(Math.floor(Math.abs(b)))+d.TimeSeparator+c(Math.abs(this.getTimezoneOffset()%60)))}}return a.toString()};Number.__typeName="Number";Number.__class=true;Number.parseLocale=function(a){return Number._parse(a,Sys.CultureInfo.CurrentCulture)};Number.parseInvariant=function(a){return Number._parse(a,Sys.CultureInfo.InvariantCulture)};Number._parse=function(g,f){var a=g.trim();if(a.match(/infinity/i)!==null)return parseFloat(a);if(a.match(/^0x[a-f0-9]+$/i)!==null)return parseInt(a);var d=f.numberFormat,b=d.NumberDecimalSeparator,c=d.NumberGroupSeparator,e=new RegExp("^[+-]?[\\d\\"+c+"]*\\"+b+"?\\d*([eE][+-]?\\d+)?$");if(!a.match(e))return Number.NaN;a=a.split(c).join("");a=a.replace(b,".");return parseFloat(a)};Number.prototype.format=function(a){return this._toFormattedString(a,Sys.CultureInfo.InvariantCulture)};Number.prototype.localeFormat=function(a){return this._toFormattedString(a,Sys.CultureInfo.CurrentCulture)};Number.prototype._toFormattedString=function(d,j){if(!d||d.length===0||d==="i")if(j&&j.name.length>0)return this.toLocaleString();else return this.toString();var q=["n %","n%","%n"],p=["-n %","-n%","-%n"],r=["(n)","-n","- n","n-","n -"],o=["$n","n$","$ n","n $"],n=["($n)","-$n","$-n","$n-","(n$)","-n$","n-$","n$-","-n $","-$ n","n $-","$ n-","$ -n","n- $","($ n)","(n $)"];function i(p,k,j,l,o){var e=j[0],g=1,c=p.toString(),a="",m="",i=c.split(".");if(i.length>1){c=i[0];a=i[1];var h=a.split(/e/i);if(h.length>1){a=h[0];m="e"+h[1]}}if(k>0){var f=a.length-k;if(f>0)a=a.slice(0,k);else if(f<0)for(var n=0;n<Math.abs(f);n++)a+="0";a=o+a}else a="";a+=m;var b=c.length-1,d="";while(b>=0){if(e===0||e>b)if(d.length>0)return c.slice(0,b+1)+l+d+a;else return c.slice(0,b+1)+a;if(d.length>0)d=c.slice(b-e+1,b+1)+l+d;else d=c.slice(b-e+1,b+1);b-=e;if(g<j.length){e=j[g];g++}}return c.slice(0,b+1)+l+d+a}var a=j.numberFormat,e=Math.abs(this);if(!d)d="D";var b=-1;if(d.length>1)b=parseInt(d.slice(1),10);var c;switch(d.charAt(0)){case "d":case "D":c="n";if(b!==-1){var g=""+e,k=b-g.length;if(k>0)for(var m=0;m<k;m++)g="0"+g;e=g}if(this<0)e=-e;break;case "c":case "C":if(this<0)c=n[a.CurrencyNegativePattern];else c=o[a.CurrencyPositivePattern];if(b===-1)b=a.CurrencyDecimalDigits;e=i(Math.abs(this),b,a.CurrencyGroupSizes,a.CurrencyGroupSeparator,a.CurrencyDecimalSeparator);break;case "n":case "N":if(this<0)c=r[a.NumberNegativePattern];else c="n";if(b===-1)b=a.NumberDecimalDigits;e=i(Math.abs(this),b,a.NumberGroupSizes,a.NumberGroupSeparator,a.NumberDecimalSeparator);break;case "p":case "P":if(this<0)c=p[a.PercentNegativePattern];else c=q[a.PercentPositivePattern];if(b===-1)b=a.PercentDecimalDigits;e=i(Math.abs(this),b,a.PercentGroupSizes,a.PercentGroupSeparator,a.PercentDecimalSeparator);break;default:throw Error.format(Sys.Res.formatBadFormatSpecifier)}var l=/n|\$|-|%/g,f="";for(;true;){var s=l.lastIndex,h=l.exec(c);f+=c.slice(s,h?h.index:c.length);if(!h)break;switch(h[0]){case "n":f+=e;break;case "$":f+=a.CurrencySymbol;break;case "-":f+=a.NegativeSign;break;case "%":f+=a.PercentSymbol}}return f};RegExp.__typeName="RegExp";RegExp.__class=true;Array.__typeName="Array";Array.__class=true;Array.add=Array.enqueue=function(a,b){a[a.length]=b};Array.addRange=function(a,b){a.push.apply(a,b)};Array.clear=function(a){a.length=0};Array.clone=function(a){if(a.length===1)return [a[0]];else return Array.apply(null,a)};Array.contains=function(a,b){return Array.indexOf(a,b)>=0};Array.dequeue=function(a){return a.shift()};Array.forEach=function(b,e,d){for(var a=0,f=b.length;a<f;a++){var c=b[a];if(typeof c!=="undefined")e.call(d,c,a,b)}};Array.indexOf=function(d,e,a){if(typeof e==="undefined")return -1;var c=d.length;if(c!==0){a=a-0;if(isNaN(a))a=0;else{if(isFinite(a))a=a-a%1;if(a<0)a=Math.max(0,c+a)}for(var b=a;b<c;b++)if(typeof d[b]!=="undefined"&&d[b]===e)return b}return -1};Array.insert=function(a,b,c){a.splice(b,0,c)};Array.parse=function(value){if(!value)return [];return eval(value)};Array.remove=function(b,c){var a=Array.indexOf(b,c);if(a>=0)b.splice(a,1);return a>=0};Array.removeAt=function(a,b){a.splice(b,1)};if(!window)this.window=this;window.Type=Function;Type.prototype.callBaseMethod=function(a,d,b){var c=this.getBaseMethod(a,d);if(!b)return c.apply(a);else return c.apply(a,b)};Type.prototype.getBaseMethod=function(d,c){var b=this.getBaseType();if(b){var a=b.prototype[c];return a instanceof Function?a:null}return null};Type.prototype.getBaseType=function(){return typeof this.__baseType==="undefined"?null:this.__baseType};Type.prototype.getInterfaces=function(){var a=[],b=this;while(b){var c=b.__interfaces;if(c)for(var d=0,f=c.length;d<f;d++){var e=c[d];if(!Array.contains(a,e))a[a.length]=e}b=b.__baseType}return a};Type.prototype.getName=function(){return typeof this.__typeName==="undefined"?"":this.__typeName};Type.prototype.implementsInterface=function(d){this.resolveInheritance();var c=d.getName(),a=this.__interfaceCache;if(a){var e=a[c];if(typeof e!=="undefined")return e}else a=this.__interfaceCache={};var b=this;while(b){var f=b.__interfaces;if(f)if(Array.indexOf(f,d)!==-1)return a[c]=true;b=b.__baseType}return a[c]=false};Type.prototype.inheritsFrom=function(b){this.resolveInheritance();var a=this.__baseType;while(a){if(a===b)return true;a=a.__baseType}return false};Type.prototype.initializeBase=function(a,b){this.resolveInheritance();if(this.__baseType)if(!b)this.__baseType.apply(a);else this.__baseType.apply(a,b);return a};Type.prototype.isImplementedBy=function(a){if(typeof a==="undefined"||a===null)return false;var b=Object.getType(a);return !!(b.implementsInterface&&b.implementsInterface(this))};Type.prototype.isInstanceOfType=function(b){if(typeof b==="undefined"||b===null)return false;if(b instanceof this)return true;var a=Object.getType(b);return !!(a===this)||a.inheritsFrom&&a.inheritsFrom(this)||a.implementsInterface&&a.implementsInterface(this)};Type.prototype.registerClass=function(c,b,d){this.prototype.constructor=this;this.__typeName=c;this.__class=true;if(b){this.__baseType=b;this.__basePrototypePending=true}Sys.__upperCaseTypes[c.toUpperCase()]=this;if(d){this.__interfaces=[];for(var a=2,f=arguments.length;a<f;a++){var e=arguments[a];this.__interfaces.push(e)}}return this};Type.prototype.registerInterface=function(a){Sys.__upperCaseTypes[a.toUpperCase()]=this;this.prototype.constructor=this;this.__typeName=a;this.__interface=true;return this};Type.prototype.resolveInheritance=function(){if(this.__basePrototypePending){var b=this.__baseType;b.resolveInheritance();for(var a in b.prototype){var c=b.prototype[a];if(!this.prototype[a])this.prototype[a]=c}delete this.__basePrototypePending}};Type.getRootNamespaces=function(){return Array.clone(Sys.__rootNamespaces)};Type.isClass=function(a){if(typeof a==="undefined"||a===null)return false;return !!a.__class};Type.isInterface=function(a){if(typeof a==="undefined"||a===null)return false;return !!a.__interface};Type.isNamespace=function(a){if(typeof a==="undefined"||a===null)return false;return !!a.__namespace};Type.parse=function(typeName,ns){var fn;if(ns){fn=Sys.__upperCaseTypes[ns.getName().toUpperCase()+"."+typeName.toUpperCase()];return fn||null}if(!typeName)return null;if(!Type.__htClasses)Type.__htClasses={};fn=Type.__htClasses[typeName];if(!fn){fn=eval(typeName);Type.__htClasses[typeName]=fn}return fn};Type.registerNamespace=function(f){var d=window,c=f.split(".");for(var b=0;b<c.length;b++){var e=c[b],a=d[e];if(!a){a=d[e]={__namespace:true,__typeName:c.slice(0,b+1).join(".")};if(b===0)Sys.__rootNamespaces[Sys.__rootNamespaces.length]=a;a.getName=function(){return this.__typeName}}d=a}};window.Sys={__namespace:true,__typeName:"Sys",getName:function(){return "Sys"},__upperCaseTypes:{}};Sys.__rootNamespaces=[Sys];Sys.IDisposable=function(){};Sys.IDisposable.prototype={};Sys.IDisposable.registerInterface("Sys.IDisposable");Sys.StringBuilder=function(a){this._parts=typeof a!=="undefined"&&a!==null&&a!==""?[a.toString()]:[];this._value={};this._len=0};Sys.StringBuilder.prototype={append:function(a){this._parts[this._parts.length]=a},appendLine:function(a){this._parts[this._parts.length]=typeof a==="undefined"||a===null||a===""?"\r\n":a+"\r\n"},clear:function(){this._parts=[];this._value={};this._len=0},isEmpty:function(){if(this._parts.length===0)return true;return this.toString()===""},toString:function(a){a=a||"";var b=this._parts;if(this._len!==b.length){this._value={};this._len=b.length}var d=this._value;if(typeof d[a]==="undefined"){if(a!=="")for(var c=0;c<b.length;)if(typeof b[c]==="undefined"||b[c]===""||b[c]===null)b.splice(c,1);else c++;d[a]=this._parts.join(a)}return d[a]}};Sys.StringBuilder.registerClass("Sys.StringBuilder");if(!window.XMLHttpRequest)window.XMLHttpRequest=function(){try{return new ActiveXObject("Msxml2.XMLHTTP.3.0")}catch(a){}return null};Sys.Browser={};Sys.Browser.InternetExplorer={};Sys.Browser.Firefox={};Sys.Browser.Safari={};Sys.Browser.Opera={};Sys.Browser.agent=null;Sys.Browser.hasDebuggerStatement=false;Sys.Browser.name=navigator.appName;Sys.Browser.version=parseFloat(navigator.appVersion);if(navigator.userAgent.indexOf(" MSIE ")>-1){Sys.Browser.agent=Sys.Browser.InternetExplorer;Sys.Browser.version=parseFloat(navigator.userAgent.match(/MSIE (\d+\.\d+)/)[1]);Sys.Browser.hasDebuggerStatement=true}else if(navigator.userAgent.indexOf(" Firefox/")>-1){Sys.Browser.agent=Sys.Browser.Firefox;Sys.Browser.version=parseFloat(navigator.userAgent.match(/Firefox\/(\d+\.\d+)/)[1]);Sys.Browser.name="Firefox";Sys.Browser.hasDebuggerStatement=true}else if(navigator.userAgent.indexOf(" Safari/")>-1){Sys.Browser.agent=Sys.Browser.Safari;Sys.Browser.version=parseFloat(navigator.userAgent.match(/Safari\/(\d+\.\d+)/)[1]);Sys.Browser.name="Safari"}else if(navigator.userAgent.indexOf("Opera/")>-1)Sys.Browser.agent=Sys.Browser.Opera;Type.registerNamespace("Sys.UI");Sys._Debug=function(){};Sys._Debug.prototype={_appendConsole:function(a){if(typeof Debug!=="undefined"&&Debug.writeln)Debug.writeln(a);if(window.console&&window.console.log)window.console.log(a);if(window.opera)window.opera.postError(a);if(window.debugService)window.debugService.trace(a)},_appendTrace:function(b){var a=document.getElementById("TraceConsole");if(a&&a.tagName.toUpperCase()==="TEXTAREA")a.value+=b+"\n"},assert:function(c,a,b){if(!c){a=b&&this.assert.caller?String.format(Sys.Res.assertFailedCaller,a,this.assert.caller):String.format(Sys.Res.assertFailed,a);if(confirm(String.format(Sys.Res.breakIntoDebugger,a)))this.fail(a)}},clearTrace:function(){var a=document.getElementById("TraceConsole");if(a&&a.tagName.toUpperCase()==="TEXTAREA")a.value=""},fail:function(message){this._appendConsole(message);if(Sys.Browser.hasDebuggerStatement)eval("debugger")},trace:function(a){this._appendConsole(a);this._appendTrace(a)},traceDump:function(a,b){var c=this._traceDump(a,b,true)},_traceDump:function(a,c,f,b,d){c=c?c:"traceDump";b=b?b:"";if(a===null){this.trace(b+c+": null");return}switch(typeof a){case "undefined":this.trace(b+c+": Undefined");break;case "number":case "string":case "boolean":this.trace(b+c+": "+a);break;default:if(Date.isInstanceOfType(a)||RegExp.isInstanceOfType(a)){this.trace(b+c+": "+a.toString());break}if(!d)d=[];else if(Array.contains(d,a)){this.trace(b+c+": ...");return}Array.add(d,a);if(a==window||a===document||window.HTMLElement&&a instanceof HTMLElement||typeof a.nodeName==="string"){var k=a.tagName?a.tagName:"DomElement";if(a.id)k+=" - "+a.id;this.trace(b+c+" {"+k+"}")}else{var i=Object.getTypeName(a);this.trace(b+c+(typeof i==="string"?" {"+i+"}":""));if(b===""||f){b+="    ";var e,j,l,g,h;if(Array.isInstanceOfType(a)){j=a.length;for(e=0;e<j;e++)this._traceDump(a[e],"["+e+"]",f,b,d)}else for(g in a){h=a[g];if(!Function.isInstanceOfType(h))this._traceDump(h,g,f,b,d)}}}Array.remove(d,a)}}};Sys._Debug.registerClass("Sys._Debug");Sys.Debug=new Sys._Debug;Sys.Debug.isDebug=false;function Sys$Enum$parse(c,e){var a,b,i;if(e){a=this.__lowerCaseValues;if(!a){this.__lowerCaseValues=a={};var g=this.prototype;for(var f in g)a[f.toLowerCase()]=g[f]}}else a=this.prototype;if(!this.__flags){i=e?c.toLowerCase():c;b=a[i.trim()];if(typeof b!=="number")throw Error.argument("value",String.format(Sys.Res.enumInvalidValue,c,this.__typeName));return b}else{var h=(e?c.toLowerCase():c).split(","),j=0;for(var d=h.length-1;d>=0;d--){var k=h[d].trim();b=a[k];if(typeof b!=="number")throw Error.argument("value",String.format(Sys.Res.enumInvalidValue,c.split(",")[d].trim(),this.__typeName));j|=b}return j}}function Sys$Enum$toString(c){if(typeof c==="undefined"||c===null)return this.__string;var d=this.prototype,a;if(!this.__flags||c===0){for(a in d)if(d[a]===c)return a}else{var b=this.__sortedValues;if(!b){b=[];for(a in d)b[b.length]={key:a,value:d[a]};b.sort(function(a,b){return a.value-b.value});this.__sortedValues=b}var e=[],g=c;for(a=b.length-1;a>=0;a--){var h=b[a],f=h.value;if(f===0)continue;if((f&c)===f){e[e.length]=h.key;g-=f;if(g===0)break}}if(e.length&&g===0)return e.reverse().join(", ")}return ""}Type.prototype.registerEnum=function(b,c){Sys.__upperCaseTypes[b.toUpperCase()]=this;for(var a in this.prototype)this[a]=this.prototype[a];this.__typeName=b;this.parse=Sys$Enum$parse;this.__string=this.toString();this.toString=Sys$Enum$toString;this.__flags=c;this.__enum=true};Type.isEnum=function(a){if(typeof a==="undefined"||a===null)return false;return !!a.__enum};Type.isFlags=function(a){if(typeof a==="undefined"||a===null)return false;return !!a.__flags};Sys.EventHandlerList=function(){this._list={}};Sys.EventHandlerList.prototype={addHandler:function(b,a){Array.add(this._getEvent(b,true),a)},removeHandler:function(c,b){var a=this._getEvent(c);if(!a)return;Array.remove(a,b)},getHandler:function(b){var a=this._getEvent(b);if(!a||a.length===0)return null;a=Array.clone(a);return function(c,d){for(var b=0,e=a.length;b<e;b++)a[b](c,d)}},_getEvent:function(a,b){if(!this._list[a]){if(!b)return null;this._list[a]=[]}return this._list[a]}};Sys.EventHandlerList.registerClass("Sys.EventHandlerList");Sys.EventArgs=function(){};Sys.EventArgs.registerClass("Sys.EventArgs");Sys.EventArgs.Empty=new Sys.EventArgs;Sys.CancelEventArgs=function(){Sys.CancelEventArgs.initializeBase(this);this._cancel=false};Sys.CancelEventArgs.prototype={get_cancel:function(){return this._cancel},set_cancel:function(a){this._cancel=a}};Sys.CancelEventArgs.registerClass("Sys.CancelEventArgs",Sys.EventArgs);Sys.INotifyPropertyChange=function(){};Sys.INotifyPropertyChange.prototype={};Sys.INotifyPropertyChange.registerInterface("Sys.INotifyPropertyChange");Sys.PropertyChangedEventArgs=function(a){Sys.PropertyChangedEventArgs.initializeBase(this);this._propertyName=a};Sys.PropertyChangedEventArgs.prototype={get_propertyName:function(){return this._propertyName}};Sys.PropertyChangedEventArgs.registerClass("Sys.PropertyChangedEventArgs",Sys.EventArgs);Sys.INotifyDisposing=function(){};Sys.INotifyDisposing.prototype={};Sys.INotifyDisposing.registerInterface("Sys.INotifyDisposing");Sys.Component=function(){if(Sys.Application)Sys.Application.registerDisposableObject(this)};Sys.Component.prototype={_id:null,_initialized:false,_updating:false,get_events:function(){if(!this._events)this._events=new Sys.EventHandlerList;return this._events},get_id:function(){return this._id},set_id:function(a){this._id=a},get_isInitialized:function(){return this._initialized},get_isUpdating:function(){return this._updating},add_disposing:function(a){this.get_events().addHandler("disposing",a)},remove_disposing:function(a){this.get_events().removeHandler("disposing",a)},add_propertyChanged:function(a){this.get_events().addHandler("propertyChanged",a)},remove_propertyChanged:function(a){this.get_events().removeHandler("propertyChanged",a)},beginUpdate:function(){this._updating=true},dispose:function(){if(this._events){var a=this._events.getHandler("disposing");if(a)a(this,Sys.EventArgs.Empty)}delete this._events;Sys.Application.unregisterDisposableObject(this);Sys.Application.removeComponent(this)},endUpdate:function(){this._updating=false;if(!this._initialized)this.initialize();this.updated()},initialize:function(){this._initialized=true},raisePropertyChanged:function(b){if(!this._events)return;var a=this._events.getHandler("propertyChanged");if(a)a(this,new Sys.PropertyChangedEventArgs(b))},updated:function(){}};Sys.Component.registerClass("Sys.Component",null,Sys.IDisposable,Sys.INotifyPropertyChange,Sys.INotifyDisposing);function Sys$Component$_setProperties(a,i){var d,j=Object.getType(a),e=j===Object||j===Sys.UI.DomElement,h=Sys.Component.isInstanceOfType(a)&&!a.get_isUpdating();if(h)a.beginUpdate();for(var c in i){var b=i[c],f=e?null:a["get_"+c];if(e||typeof f!=="function"){var k=a[c];if(!b||typeof b!=="object"||e&&!k)a[c]=b;else Sys$Component$_setProperties(k,b)}else{var l=a["set_"+c];if(typeof l==="function")l.apply(a,[b]);else if(b instanceof Array){d=f.apply(a);for(var g=0,m=d.length,n=b.length;g<n;g++,m++)d[m]=b[g]}else if(typeof b==="object"&&Object.getType(b)===Object){d=f.apply(a);Sys$Component$_setProperties(d,b)}}}if(h)a.endUpdate()}function Sys$Component$_setReferences(c,b){for(var a in b){var e=c["set_"+a],d=$find(b[a]);e.apply(c,[d])}}var $create=Sys.Component.create=function(h,f,d,c,g){var a=g?new h(g):new h,b=Sys.Application,i=b.get_isCreatingComponents();a.beginUpdate();if(f)Sys$Component$_setProperties(a,f);if(d)for(var e in d)a["add_"+e](d[e]);if(a.get_id())b.addComponent(a);if(i){b._createdComponents[b._createdComponents.length]=a;if(c)b._addComponentToSecondPass(a,c);else a.endUpdate()}else{if(c)Sys$Component$_setReferences(a,c);a.endUpdate()}return a};Sys.UI.MouseButton=function(){throw Error.notImplemented()};Sys.UI.MouseButton.prototype={leftButton:0,middleButton:1,rightButton:2};Sys.UI.MouseButton.registerEnum("Sys.UI.MouseButton");Sys.UI.Key=function(){throw Error.notImplemented()};Sys.UI.Key.prototype={backspace:8,tab:9,enter:13,esc:27,space:32,pageUp:33,pageDown:34,end:35,home:36,left:37,up:38,right:39,down:40,del:127};Sys.UI.Key.registerEnum("Sys.UI.Key");Sys.UI.Point=function(a,b){this.x=a;this.y=b};Sys.UI.Point.registerClass("Sys.UI.Point");Sys.UI.Bounds=function(c,d,b,a){this.x=c;this.y=d;this.height=a;this.width=b};Sys.UI.Bounds.registerClass("Sys.UI.Bounds");Sys.UI.DomEvent=function(d){var a=d;this.rawEvent=a;this.altKey=a.altKey;if(typeof a.button!=="undefined")this.button=typeof a.which!=="undefined"?a.button:a.button===4?Sys.UI.MouseButton.middleButton:a.button===2?Sys.UI.MouseButton.rightButton:Sys.UI.MouseButton.leftButton;if(a.type==="keypress")this.charCode=a.charCode||a.keyCode;else if(a.keyCode&&a.keyCode===46)this.keyCode=127;else this.keyCode=a.keyCode;this.clientX=a.clientX;this.clientY=a.clientY;this.ctrlKey=a.ctrlKey;this.target=a.target?a.target:a.srcElement;if(typeof a.offsetX!=="undefined"&&typeof a.offsetY!=="undefined"){this.offsetX=a.offsetX;this.offsetY=a.offsetY}else if(this.target&&this.target.nodeType!==3&&typeof a.clientX==="number"){var b=Sys.UI.DomElement.getLocation(this.target),c=Sys.UI.DomElement._getWindow(this.target);this.offsetX=(c.pageXOffset||0)+a.clientX-b.x;this.offsetY=(c.pageYOffset||0)+a.clientY-b.y}this.screenX=a.screenX;this.screenY=a.screenY;this.shiftKey=a.shiftKey;this.type=a.type};Sys.UI.DomEvent.prototype={preventDefault:function(){if(this.rawEvent.preventDefault)this.rawEvent.preventDefault();else if(window.event)this.rawEvent.returnValue=false},stopPropagation:function(){if(this.rawEvent.stopPropagation)this.rawEvent.stopPropagation();else if(window.event)this.rawEvent.cancelBubble=true}};Sys.UI.DomEvent.registerClass("Sys.UI.DomEvent");var $addHandler=Sys.UI.DomEvent.addHandler=function(a,d,e){if(!a._events)a._events={};var c=a._events[d];if(!c)a._events[d]=c=[];var b;if(a.addEventListener){b=function(b){return e.call(a,new Sys.UI.DomEvent(b))};a.addEventListener(d,b,false)}else if(a.attachEvent){b=function(){var b={};try{b=Sys.UI.DomElement._getWindow(a).event}catch(c){}return e.call(a,new Sys.UI.DomEvent(b))};a.attachEvent("on"+d,b)}c[c.length]={handler:e,browserHandler:b}},$addHandlers=Sys.UI.DomEvent.addHandlers=function(e,d,c){for(var b in d){var a=d[b];if(c)a=Function.createDelegate(c,a);$addHandler(e,b,a)}},$clearHandlers=Sys.UI.DomEvent.clearHandlers=function(a){if(a._events){var e=a._events;for(var b in e){var d=e[b];for(var c=d.length-1;c>=0;c--)$removeHandler(a,b,d[c].handler)}a._events=null}},$removeHandler=Sys.UI.DomEvent.removeHandler=function(a,e,f){var d=null,c=a._events[e];for(var b=0,g=c.length;b<g;b++)if(c[b].handler===f){d=c[b].browserHandler;break}if(a.removeEventListener)a.removeEventListener(e,d,false);else if(a.detachEvent)a.detachEvent("on"+e,d);c.splice(b,1)};Sys.UI.DomElement=function(){};Sys.UI.DomElement.registerClass("Sys.UI.DomElement");Sys.UI.DomElement.addCssClass=function(a,b){if(!Sys.UI.DomElement.containsCssClass(a,b))if(a.className==="")a.className=b;else a.className+=" "+b};Sys.UI.DomElement.containsCssClass=function(b,a){return Array.contains(b.className.split(" "),a)};Sys.UI.DomElement.getBounds=function(a){var b=Sys.UI.DomElement.getLocation(a);return new Sys.UI.Bounds(b.x,b.y,a.offsetWidth||0,a.offsetHeight||0)};var $get=Sys.UI.DomElement.getElementById=function(f,e){if(!e)return document.getElementById(f);if(e.getElementById)return e.getElementById(f);var c=[],d=e.childNodes;for(var b=0;b<d.length;b++){var a=d[b];if(a.nodeType==1)c[c.length]=a}while(c.length){a=c.shift();if(a.id==f)return a;d=a.childNodes;for(b=0;b<d.length;b++){a=d[b];if(a.nodeType==1)c[c.length]=a}}return null};switch(Sys.Browser.agent){case Sys.Browser.InternetExplorer:Sys.UI.DomElement.getLocation=function(a){if(a.self||a.nodeType===9)return new Sys.UI.Point(0,0);var b=a.getBoundingClientRect();if(!b)return new Sys.UI.Point(0,0);var d=a.ownerDocument.documentElement,e=b.left-2+d.scrollLeft,f=b.top-2+d.scrollTop;try{var c=a.ownerDocument.parentWindow.frameElement||null;if(c){var g=c.frameBorder==="0"||c.frameBorder==="no"?2:0;e+=g;f+=g}}catch(h){}return new Sys.UI.Point(e,f)};break;case Sys.Browser.Safari:Sys.UI.DomElement.getLocation=function(c){if(c.window&&c.window===c||c.nodeType===9)return new Sys.UI.Point(0,0);var f=0,g=0,j=null,e=null,b;for(var a=c;a;j=a,(e=b,a=a.offsetParent)){b=Sys.UI.DomElement._getCurrentStyle(a);var d=a.tagName;if((a.offsetLeft||a.offsetTop)&&(d!=="BODY"||(!e||e.position!=="absolute"))){f+=a.offsetLeft;g+=a.offsetTop}}b=Sys.UI.DomElement._getCurrentStyle(c);var h=b?b.position:null;if(!h||h!=="absolute")for(var a=c.parentNode;a;a=a.parentNode){d=a.tagName;if(d!=="BODY"&&d!=="HTML"&&(a.scrollLeft||a.scrollTop)){f-=a.scrollLeft||0;g-=a.scrollTop||0}b=Sys.UI.DomElement._getCurrentStyle(a);var i=b?b.position:null;if(i&&i==="absolute")break}return new Sys.UI.Point(f,g)};break;case Sys.Browser.Opera:Sys.UI.DomElement.getLocation=function(b){if(b.window&&b.window===b||b.nodeType===9)return new Sys.UI.Point(0,0);var d=0,e=0,i=null;for(var a=b;a;i=a,a=a.offsetParent){var f=a.tagName;d+=a.offsetLeft||0;e+=a.offsetTop||0}var g=b.style.position,c=g&&g!=="static";for(var a=b.parentNode;a;a=a.parentNode){f=a.tagName;if(f!=="BODY"&&f!=="HTML"&&(a.scrollLeft||a.scrollTop)&&(c&&(a.style.overflow==="scroll"||a.style.overflow==="auto"))){d-=a.scrollLeft||0;e-=a.scrollTop||0}var h=a&&a.style?a.style.position:null;c=c||h&&h!=="static"}return new Sys.UI.Point(d,e)};break;default:Sys.UI.DomElement.getLocation=function(d){if(d.window&&d.window===d||d.nodeType===9)return new Sys.UI.Point(0,0);var e=0,f=0,i=null,g=null,b=null;for(var a=d;a;i=a,(g=b,a=a.offsetParent)){var c=a.tagName;b=Sys.UI.DomElement._getCurrentStyle(a);if((a.offsetLeft||a.offsetTop)&&!(c==="BODY"&&(!g||g.position!=="absolute"))){e+=a.offsetLeft;f+=a.offsetTop}if(i!==null&&b){if(c!=="TABLE"&&c!=="TD"&&c!=="HTML"){e+=parseInt(b.borderLeftWidth)||0;f+=parseInt(b.borderTopWidth)||0}if(c==="TABLE"&&(b.position==="relative"||b.position==="absolute")){e+=parseInt(b.marginLeft)||0;f+=parseInt(b.marginTop)||0}}}b=Sys.UI.DomElement._getCurrentStyle(d);var h=b?b.position:null;if(!h||h!=="absolute")for(var a=d.parentNode;a;a=a.parentNode){c=a.tagName;if(c!=="BODY"&&c!=="HTML"&&(a.scrollLeft||a.scrollTop)){e-=a.scrollLeft||0;f-=a.scrollTop||0;b=Sys.UI.DomElement._getCurrentStyle(a);if(b){e+=parseInt(b.borderLeftWidth)||0;f+=parseInt(b.borderTopWidth)||0}}}return new Sys.UI.Point(e,f)}}Sys.UI.DomElement.removeCssClass=function(d,c){var a=" "+d.className+" ",b=a.indexOf(" "+c+" ");if(b>=0)d.className=(a.substr(0,b)+" "+a.substring(b+c.length+1,a.length)).trim()};Sys.UI.DomElement.setLocation=function(b,c,d){var a=b.style;a.position="absolute";a.left=c+"px";a.top=d+"px"};Sys.UI.DomElement.toggleCssClass=function(b,a){if(Sys.UI.DomElement.containsCssClass(b,a))Sys.UI.DomElement.removeCssClass(b,a);else Sys.UI.DomElement.addCssClass(b,a)};Sys.UI.DomElement.getVisibilityMode=function(a){return a._visibilityMode===Sys.UI.VisibilityMode.hide?Sys.UI.VisibilityMode.hide:Sys.UI.VisibilityMode.collapse};Sys.UI.DomElement.setVisibilityMode=function(a,b){Sys.UI.DomElement._ensureOldDisplayMode(a);if(a._visibilityMode!==b){a._visibilityMode=b;if(Sys.UI.DomElement.getVisible(a)===false)if(a._visibilityMode===Sys.UI.VisibilityMode.hide)a.style.display=a._oldDisplayMode;else a.style.display="none";a._visibilityMode=b}};Sys.UI.DomElement.getVisible=function(b){var a=b.currentStyle||Sys.UI.DomElement._getCurrentStyle(b);if(!a)return true;return a.visibility!=="hidden"&&a.display!=="none"};Sys.UI.DomElement.setVisible=function(a,b){if(b!==Sys.UI.DomElement.getVisible(a)){Sys.UI.DomElement._ensureOldDisplayMode(a);a.style.visibility=b?"visible":"hidden";if(b||a._visibilityMode===Sys.UI.VisibilityMode.hide)a.style.display=a._oldDisplayMode;else a.style.display="none"}};Sys.UI.DomElement._ensureOldDisplayMode=function(a){if(!a._oldDisplayMode){var b=a.currentStyle||Sys.UI.DomElement._getCurrentStyle(a);a._oldDisplayMode=b?b.display:null;if(!a._oldDisplayMode||a._oldDisplayMode==="none")switch(a.tagName.toUpperCase()){case "DIV":case "P":case "ADDRESS":case "BLOCKQUOTE":case "BODY":case "COL":case "COLGROUP":case "DD":case "DL":case "DT":case "FIELDSET":case "FORM":case "H1":case "H2":case "H3":case "H4":case "H5":case "H6":case "HR":case "IFRAME":case "LEGEND":case "OL":case "PRE":case "TABLE":case "TD":case "TH":case "TR":case "UL":a._oldDisplayMode="block";break;case "LI":a._oldDisplayMode="list-item";break;default:a._oldDisplayMode="inline"}}};Sys.UI.DomElement._getWindow=function(a){var b=a.ownerDocument||a.document||a;return b.defaultView||b.parentWindow};Sys.UI.DomElement._getCurrentStyle=function(a){var c=Sys.UI.DomElement._getWindow(a);if(a.documentElement)a=a.documentElement;var b=c&&a!==c&&c.getComputedStyle?c.getComputedStyle(a,null):a.currentStyle||a.style;if(!b&&Sys.Browser.agent===Sys.Browser.Safari&&a.style){var g=a.style.display,f=a.style.position;a.style.position="absolute";a.style.display="block";var e=c.getComputedStyle(a,null);a.style.display=g;a.style.position=f;b={};for(var d in e)b[d]=e[d];b.display="none"}return b};Sys.IContainer=function(){};Sys.IContainer.prototype={};Sys.IContainer.registerInterface("Sys.IContainer");Sys._ScriptLoader=function(){this._scriptsToLoad=null;this._scriptLoadedDelegate=Function.createDelegate(this,this._scriptLoadedHandler)};Sys._ScriptLoader.prototype={dispose:function(){this._stopLoading();if(this._events)delete this._events;this._scriptLoadedDelegate=null},loadScripts:function(a,c,d,b){this._loading=true;this._allScriptsLoadedCallback=c;this._scriptLoadFailedCallback=d;this._scriptLoadTimeoutCallback=b;if(a>0)this._timeoutCookie=window.setTimeout(Function.createDelegate(this,this._scriptLoadTimeoutHandler),a*1000);this._loadScriptsInternal()},notifyScriptLoaded:function(){if(!this._loading)return;this._currentTask._notified++;if(Sys.Browser.agent===Sys.Browser.Safari)if(this._currentTask._notified===1)window.setTimeout(Function.createDelegate(this,function(){this._scriptLoadedHandler(this._currentTask.get_scriptElement(),true)}),0)},queueCustomScriptTag:function(a){if(!this._scriptsToLoad)this._scriptsToLoad=[];Array.add(this._scriptsToLoad,a)},queueScriptBlock:function(a){if(!this._scriptsToLoad)this._scriptsToLoad=[];Array.add(this._scriptsToLoad,{text:a})},queueScriptReference:function(a){if(!this._scriptsToLoad)this._scriptsToLoad=[];Array.add(this._scriptsToLoad,{src:a})},_createScriptElement:function(c){var a=document.createElement("SCRIPT");a.type="text/javascript";for(var b in c)a[b]=c[b];return a},_loadScriptsInternal:function(){if(this._scriptsToLoad&&this._scriptsToLoad.length>0){var b=Array.dequeue(this._scriptsToLoad),a=this._createScriptElement(b);if(a.text&&Sys.Browser.agent===Sys.Browser.Safari){a.innerHTML=a.text;delete a.text}if(typeof b.src==="string"){this._currentTask=new Sys._ScriptLoaderTask(a,this._scriptLoadedDelegate);this._currentTask.execute()}else{document.getElementsByTagName("HEAD")[0].appendChild(a);var d=this;window.setTimeout(function(){Sys._ScriptLoader._clearScript(a);d._loadScriptsInternal()},0)}}else{var c=this._allScriptsLoadedCallback;this._stopLoading();if(c)c(this)}},_raiseError:function(a){var c=this._scriptLoadFailedCallback,b=this._currentTask.get_scriptElement();this._stopLoading();if(c)c(this,b,a);else throw Sys._ScriptLoader._errorScriptLoadFailed(b.src,a)},_scriptLoadedHandler:function(a,b){if(b&&this._currentTask._notified)if(this._currentTask._notified>1)this._raiseError(true);else{Array.add(Sys._ScriptLoader._getLoadedScripts(),a.src);this._currentTask.dispose();this._currentTask=null;this._loadScriptsInternal()}else this._raiseError(false)},_scriptLoadTimeoutHandler:function(){var a=this._scriptLoadTimeoutCallback;this._stopLoading();if(a)a(this)},_stopLoading:function(){if(this._timeoutCookie){window.clearTimeout(this._timeoutCookie);this._timeoutCookie=null}if(this._currentTask){this._currentTask.dispose();this._currentTask=null}this._scriptsToLoad=null;this._loading=null;this._allScriptsLoadedCallback=null;this._scriptLoadFailedCallback=null;this._scriptLoadTimeoutCallback=null}};Sys._ScriptLoader.registerClass("Sys._ScriptLoader",null,Sys.IDisposable);Sys._ScriptLoader.getInstance=function(){var a=Sys._ScriptLoader._activeInstance;if(!a)a=Sys._ScriptLoader._activeInstance=new Sys._ScriptLoader;return a};Sys._ScriptLoader.isScriptLoaded=function(b){var a=document.createElement("script");a.src=b;return Array.contains(Sys._ScriptLoader._getLoadedScripts(),a.src)};Sys._ScriptLoader.readLoadedScripts=function(){if(!Sys._ScriptLoader._referencedScripts){var b=Sys._ScriptLoader._referencedScripts=[],c=document.getElementsByTagName("SCRIPT");for(i=c.length-1;i>=0;i--){var d=c[i],a=d.src;if(a.length)if(!Array.contains(b,a))Array.add(b,a)}}};Sys._ScriptLoader._clearScript=function(a){if(!Sys.Debug.isDebug)a.parentNode.removeChild(a)};Sys._ScriptLoader._errorScriptLoadFailed=function(b,d){var a;if(d)a=Sys.Res.scriptLoadMultipleCallbacks;else a=Sys.Res.scriptLoadFailed;var e="Sys.ScriptLoadFailedException: "+String.format(a,b),c=Error.create(e,{name:"Sys.ScriptLoadFailedException","scriptUrl":b});c.popStackFrame();return c};Sys._ScriptLoader._getLoadedScripts=function(){if(!Sys._ScriptLoader._referencedScripts){Sys._ScriptLoader._referencedScripts=[];Sys._ScriptLoader.readLoadedScripts()}return Sys._ScriptLoader._referencedScripts};Sys._ScriptLoaderTask=function(b,a){this._scriptElement=b;this._completedCallback=a;this._notified=0};Sys._ScriptLoaderTask.prototype={get_scriptElement:function(){return this._scriptElement},dispose:function(){if(this._disposed)return;this._disposed=true;this._removeScriptElementHandlers();Sys._ScriptLoader._clearScript(this._scriptElement);this._scriptElement=null},execute:function(){this._addScriptElementHandlers();document.getElementsByTagName("HEAD")[0].appendChild(this._scriptElement)},_addScriptElementHandlers:function(){this._scriptLoadDelegate=Function.createDelegate(this,this._scriptLoadHandler);if(Sys.Browser.agent!==Sys.Browser.InternetExplorer){this._scriptElement.readyState="loaded";$addHandler(this._scriptElement,"load",this._scriptLoadDelegate)}else $addHandler(this._scriptElement,"readystatechange",this._scriptLoadDelegate);if(this._scriptElement.addEventListener){this._scriptErrorDelegate=Function.createDelegate(this,this._scriptErrorHandler);this._scriptElement.addEventListener("error",this._scriptErrorDelegate,false)}},_removeScriptElementHandlers:function(){if(this._scriptLoadDelegate){var a=this.get_scriptElement();if(Sys.Browser.agent!==Sys.Browser.InternetExplorer)$removeHandler(a,"load",this._scriptLoadDelegate);else $removeHandler(a,"readystatechange",this._scriptLoadDelegate);if(this._scriptErrorDelegate){this._scriptElement.removeEventListener("error",this._scriptErrorDelegate,false);this._scriptErrorDelegate=null}this._scriptLoadDelegate=null}},_scriptErrorHandler:function(){if(this._disposed)return;this._completedCallback(this.get_scriptElement(),false)},_scriptLoadHandler:function(){if(this._disposed)return;var a=this.get_scriptElement();if(a.readyState!=="loaded"&&a.readyState!=="complete")return;var b=this;window.setTimeout(function(){b._completedCallback(a,true)},0)}};Sys._ScriptLoaderTask.registerClass("Sys._ScriptLoaderTask",null,Sys.IDisposable);Sys.ApplicationLoadEventArgs=function(b,a){Sys.ApplicationLoadEventArgs.initializeBase(this);this._components=b;this._isPartialLoad=a};Sys.ApplicationLoadEventArgs.prototype={get_components:function(){return this._components},get_isPartialLoad:function(){return this._isPartialLoad}};Sys.ApplicationLoadEventArgs.registerClass("Sys.ApplicationLoadEventArgs",Sys.EventArgs);Sys._Application=function(){Sys._Application.initializeBase(this);this._disposableObjects=[];this._components={};this._createdComponents=[];this._secondPassComponents=[];this._unloadHandlerDelegate=Function.createDelegate(this,this._unloadHandler);this._loadHandlerDelegate=Function.createDelegate(this,this._loadHandler);Sys.UI.DomEvent.addHandler(window,"unload",this._unloadHandlerDelegate);Sys.UI.DomEvent.addHandler(window,"load",this._loadHandlerDelegate)};Sys._Application.prototype={_creatingComponents:false,_disposing:false,get_isCreatingComponents:function(){return this._creatingComponents},add_load:function(a){this.get_events().addHandler("load",a)},remove_load:function(a){this.get_events().removeHandler("load",a)},add_init:function(a){if(this._initialized)a(this,Sys.EventArgs.Empty);else this.get_events().addHandler("init",a)},remove_init:function(a){this.get_events().removeHandler("init",a)},add_unload:function(a){this.get_events().addHandler("unload",a)},remove_unload:function(a){this.get_events().removeHandler("unload",a)},addComponent:function(a){this._components[a.get_id()]=a},beginCreateComponents:function(){this._creatingComponents=true},dispose:function(){if(!this._disposing){this._disposing=true;if(window.pageUnload)window.pageUnload(this,Sys.EventArgs.Empty);var c=this.get_events().getHandler("unload");if(c)c(this,Sys.EventArgs.Empty);var b=Array.clone(this._disposableObjects);for(var a=0,e=b.length;a<e;a++)b[a].dispose();Array.clear(this._disposableObjects);Sys.UI.DomEvent.removeHandler(window,"unload",this._unloadHandlerDelegate);if(this._loadHandlerDelegate){Sys.UI.DomEvent.removeHandler(window,"load",this._loadHandlerDelegate);this._loadHandlerDelegate=null}var d=Sys._ScriptLoader.getInstance();if(d)d.dispose();Sys._Application.callBaseMethod(this,"dispose")}},endCreateComponents:function(){var b=this._secondPassComponents;for(var a=0,d=b.length;a<d;a++){var c=b[a].component;Sys$Component$_setReferences(c,b[a].references);c.endUpdate()}this._secondPassComponents=[];this._creatingComponents=false},findComponent:function(b,a){return a?Sys.IContainer.isInstanceOfType(a)?a.findComponent(b):a[b]||null:Sys.Application._components[b]||null},getComponents:function(){var a=[],b=this._components;for(var c in b)a[a.length]=b[c];return a},initialize:function(){if(!this._initialized&&!this._initializing){this._initializing=true;window.setTimeout(Function.createDelegate(this,this._doInitialize),0)}},notifyScriptLoaded:function(){var a=Sys._ScriptLoader.getInstance();if(a)a.notifyScriptLoaded()},registerDisposableObject:function(a){if(!this._disposing)this._disposableObjects[this._disposableObjects.length]=a},raiseLoad:function(){var b=this.get_events().getHandler("load"),a=new Sys.ApplicationLoadEventArgs(Array.clone(this._createdComponents),!this._initializing);if(b)b(this,a);if(window.pageLoad)window.pageLoad(this,a);this._createdComponents=[]},removeComponent:function(b){var a=b.get_id();if(a)delete this._components[a]},unregisterDisposableObject:function(a){if(!this._disposing)Array.remove(this._disposableObjects,a)},_addComponentToSecondPass:function(b,a){this._secondPassComponents[this._secondPassComponents.length]={component:b,references:a}},_doInitialize:function(){Sys._Application.callBaseMethod(this,"initialize");var a=this.get_events().getHandler("init");if(a){this.beginCreateComponents();a(this,Sys.EventArgs.Empty);this.endCreateComponents()}this.raiseLoad();this._initializing=false},_loadHandler:function(){if(this._loadHandlerDelegate){Sys.UI.DomEvent.removeHandler(window,"load",this._loadHandlerDelegate);this._loadHandlerDelegate=null}this.initialize()},_unloadHandler:function(){this.dispose()}};Sys._Application.registerClass("Sys._Application",Sys.Component,Sys.IContainer);Sys.Application=new Sys._Application;var $find=Sys.Application.findComponent;Type.registerNamespace("Sys.Net");Sys.Net.WebRequestExecutor=function(){this._webRequest=null;this._resultObject=null};Sys.Net.WebRequestExecutor.prototype={get_webRequest:function(){return this._webRequest},_set_webRequest:function(a){this._webRequest=a},get_started:function(){throw Error.notImplemented()},get_responseAvailable:function(){throw Error.notImplemented()},get_timedOut:function(){throw Error.notImplemented()},get_aborted:function(){throw Error.notImplemented()},get_responseData:function(){throw Error.notImplemented()},get_statusCode:function(){throw Error.notImplemented()},get_statusText:function(){throw Error.notImplemented()},get_xml:function(){throw Error.notImplemented()},get_object:function(){if(!this._resultObject)this._resultObject=Sys.Serialization.JavaScriptSerializer.deserialize(this.get_responseData());return this._resultObject},executeRequest:function(){throw Error.notImplemented()},abort:function(){throw Error.notImplemented()},getResponseHeader:function(){throw Error.notImplemented()},getAllResponseHeaders:function(){throw Error.notImplemented()}};Sys.Net.WebRequestExecutor.registerClass("Sys.Net.WebRequestExecutor");Sys.Net.XMLDOM=function(b){if(!window.DOMParser)try{var a=new ActiveXObject("Msxml2.DOMDocument.3.0");a.async=false;a.loadXML(b);a.setProperty("SelectionLanguage","XPath");return a}catch(d){}else try{var c=new window.DOMParser;return c.parseFromString(b,"text/xml")}catch(d){}return null};Sys.Net.XMLHttpExecutor=function(){Sys.Net.XMLHttpExecutor.initializeBase(this);var a=this;this._xmlHttpRequest=null;this._webRequest=null;this._responseAvailable=false;this._timedOut=false;this._timer=null;this._aborted=false;this._started=false;this._onReadyStateChange=function(){if(a._xmlHttpRequest.readyState===4){try{if(typeof a._xmlHttpRequest.status==="undefined")return}catch(b){return}a._clearTimer();a._responseAvailable=true;a._webRequest.completed(Sys.EventArgs.Empty);if(a._xmlHttpRequest!=null){a._xmlHttpRequest.onreadystatechange=Function.emptyMethod;a._xmlHttpRequest=null}}};this._clearTimer=function(){if(a._timer!=null){window.clearTimeout(a._timer);a._timer=null}};this._onTimeout=function(){if(!a._responseAvailable){a._clearTimer();a._timedOut=true;a._xmlHttpRequest.onreadystatechange=Function.emptyMethod;a._xmlHttpRequest.abort();a._webRequest.completed(Sys.EventArgs.Empty);a._xmlHttpRequest=null}}};Sys.Net.XMLHttpExecutor.prototype={get_timedOut:function(){return this._timedOut},get_started:function(){return this._started},get_responseAvailable:function(){return this._responseAvailable},get_aborted:function(){return this._aborted},executeRequest:function(){this._webRequest=this.get_webRequest();var c=this._webRequest.get_body(),a=this._webRequest.get_headers();this._xmlHttpRequest=new XMLHttpRequest;this._xmlHttpRequest.onreadystatechange=this._onReadyStateChange;var e=this._webRequest.get_httpVerb();this._xmlHttpRequest.open(e,this._webRequest.getResolvedUrl(),true);if(a)for(var b in a){var f=a[b];if(typeof f!=="function")this._xmlHttpRequest.setRequestHeader(b,f)}if(e.toLowerCase()==="post"){if(a===null||!a["Content-Type"])this._xmlHttpRequest.setRequestHeader("Content-Type","application/x-www-form-urlencoded");if(!c)c=""}var d=this._webRequest.get_timeout();if(d>0)this._timer=window.setTimeout(Function.createDelegate(this,this._onTimeout),d);this._xmlHttpRequest.send(c);this._started=true},getResponseHeader:function(b){var a;try{a=this._xmlHttpRequest.getResponseHeader(b)}catch(c){}if(!a)a="";return a},getAllResponseHeaders:function(){return this._xmlHttpRequest.getAllResponseHeaders()},get_responseData:function(){return this._xmlHttpRequest.responseText},get_statusCode:function(){return this._xmlHttpRequest.status},get_statusText:function(){return this._xmlHttpRequest.statusText},get_xml:function(){var a=this._xmlHttpRequest.responseXML;if(!a||!a.documentElement){a=Sys.Net.XMLDOM(this._xmlHttpRequest.responseText);if(!a||!a.documentElement)return null}else if(navigator.userAgent.indexOf("MSIE")!==-1)a.setProperty("SelectionLanguage","XPath");if(a.documentElement.namespaceURI==="http://www.mozilla.org/newlayout/xml/parsererror.xml"&&a.documentElement.tagName==="parsererror")return null;if(a.documentElement.firstChild&&a.documentElement.firstChild.tagName==="parsererror")return null;return a},abort:function(){if(this._aborted||this._responseAvailable||this._timedOut)return;this._aborted=true;this._clearTimer();if(this._xmlHttpRequest&&!this._responseAvailable){this._xmlHttpRequest.onreadystatechange=Function.emptyMethod;this._xmlHttpRequest.abort();this._xmlHttpRequest=null;this._webRequest.completed(Sys.EventArgs.Empty)}}};Sys.Net.XMLHttpExecutor.registerClass("Sys.Net.XMLHttpExecutor",Sys.Net.WebRequestExecutor);Sys.Net._WebRequestManager=function(){this._this=this;this._defaultTimeout=0;this._defaultExecutorType="Sys.Net.XMLHttpExecutor"};Sys.Net._WebRequestManager.prototype={add_invokingRequest:function(a){this._get_eventHandlerList().addHandler("invokingRequest",a)},remove_invokingRequest:function(a){this._get_eventHandlerList().removeHandler("invokingRequest",a)},add_completedRequest:function(a){this._get_eventHandlerList().addHandler("completedRequest",a)},remove_completedRequest:function(a){this._get_eventHandlerList().removeHandler("completedRequest",a)},_get_eventHandlerList:function(){if(!this._events)this._events=new Sys.EventHandlerList;return this._events},get_defaultTimeout:function(){return this._defaultTimeout},set_defaultTimeout:function(a){this._defaultTimeout=a},get_defaultExecutorType:function(){return this._defaultExecutorType},set_defaultExecutorType:function(a){this._defaultExecutorType=a},executeRequest:function(webRequest){var executor=webRequest.get_executor();if(!executor){var failed=false;try{var executorType=eval(this._defaultExecutorType);executor=new executorType}catch(a){failed=true}webRequest.set_executor(executor)}if(executor.get_aborted())return;var evArgs=new Sys.Net.NetworkRequestEventArgs(webRequest),handler=this._get_eventHandlerList().getHandler("invokingRequest");if(handler)handler(this,evArgs);if(!evArgs.get_cancel())executor.executeRequest()}};Sys.Net._WebRequestManager.registerClass("Sys.Net._WebRequestManager");Sys.Net.WebRequestManager=new Sys.Net._WebRequestManager;Sys.Net.NetworkRequestEventArgs=function(a){Sys.Net.NetworkRequestEventArgs.initializeBase(this);this._webRequest=a};Sys.Net.NetworkRequestEventArgs.prototype={get_webRequest:function(){return this._webRequest}};Sys.Net.NetworkRequestEventArgs.registerClass("Sys.Net.NetworkRequestEventArgs",Sys.CancelEventArgs);Sys.Net.WebRequest=function(){this._url="";this._headers={};this._body=null;this._userContext=null;this._httpVerb=null;this._executor=null;this._invokeCalled=false;this._timeout=0};Sys.Net.WebRequest.prototype={add_completed:function(a){this._get_eventHandlerList().addHandler("completed",a)},remove_completed:function(a){this._get_eventHandlerList().removeHandler("completed",a)},completed:function(b){var a=Sys.Net.WebRequestManager._get_eventHandlerList().getHandler("completedRequest");if(a)a(this._executor,b);a=this._get_eventHandlerList().getHandler("completed");if(a)a(this._executor,b)},_get_eventHandlerList:function(){if(!this._events)this._events=new Sys.EventHandlerList;return this._events},get_url:function(){return this._url},set_url:function(a){this._url=a},get_headers:function(){return this._headers},get_httpVerb:function(){if(this._httpVerb===null){if(this._body===null)return "GET";return "POST"}return this._httpVerb},set_httpVerb:function(a){this._httpVerb=a},get_body:function(){return this._body},set_body:function(a){this._body=a},get_userContext:function(){return this._userContext},set_userContext:function(a){this._userContext=a},get_executor:function(){return this._executor},set_executor:function(a){this._executor=a;this._executor._set_webRequest(this)},get_timeout:function(){if(this._timeout===0)return Sys.Net.WebRequestManager.get_defaultTimeout();return this._timeout},set_timeout:function(a){this._timeout=a},getResolvedUrl:function(){return Sys.Net.WebRequest._resolveUrl(this._url)},invoke:function(){Sys.Net.WebRequestManager.executeRequest(this);this._invokeCalled=true}};Sys.Net.WebRequest._resolveUrl=function(b,a){if(b&&b.indexOf("://")!==-1)return b;if(!a||a.length===0){var c=document.getElementsByTagName("base")[0];if(c&&c.href&&c.href.length>0)a=c.href;else a=document.URL}var d=a.indexOf("?");if(d!==-1)a=a.substr(0,d);a=a.substr(0,a.lastIndexOf("/")+1);if(!b||b.length===0)return a;if(b.charAt(0)==="/"){var e=a.indexOf("://"),g=a.indexOf("/",e+3);return a.substr(0,g)+b}else{var f=a.lastIndexOf("/");return a.substr(0,f+1)+b}};Sys.Net.WebRequest._createQueryString=function(d,b){if(!b)b=encodeURIComponent;var a=new Sys.StringBuilder,f=0;for(var c in d){var e=d[c];if(typeof e==="function")continue;var g=Sys.Serialization.JavaScriptSerializer.serialize(e);if(f!==0)a.append("&");a.append(c);a.append("=");a.append(b(g));f++}return a.toString()};Sys.Net.WebRequest._createUrl=function(a,b){if(!b)return a;var d=Sys.Net.WebRequest._createQueryString(b);if(d.length>0){var c="?";if(a&&a.indexOf("?")!==-1)c="&";return a+c+d}else return a};Sys.Net.WebRequest.registerClass("Sys.Net.WebRequest");Sys.Net.WebServiceProxy=function(){};Sys.Net.WebServiceProxy.prototype={get_timeout:function(){return this._timeout},set_timeout:function(a){if(a<0)throw Error.argumentOutOfRange("value",a,Sys.Res.invalidTimeout);this._timeout=a},get_defaultUserContext:function(){return this._userContext},set_defaultUserContext:function(a){this._userContext=a},get_defaultSucceededCallback:function(){return this._succeeded},set_defaultSucceededCallback:function(a){this._succeeded=a},get_defaultFailedCallback:function(){return this._failed},set_defaultFailedCallback:function(a){this._failed=a},get_path:function(){return this._path},set_path:function(a){this._path=a},_invoke:function(d,e,g,f,c,b,a){if(c===null||typeof c==="undefined")c=this.get_defaultSucceededCallback();if(b===null||typeof b==="undefined")b=this.get_defaultFailedCallback();if(a===null||typeof a==="undefined")a=this.get_defaultUserContext();return Sys.Net.WebServiceProxy.invoke(d,e,g,f,c,b,a,this.get_timeout())}};Sys.Net.WebServiceProxy.registerClass("Sys.Net.WebServiceProxy");Sys.Net.WebServiceProxy.invoke=function(k,a,j,d,i,c,f,h){var b=new Sys.Net.WebRequest;b.get_headers()["Content-Type"]="application/json; charset=utf-8";if(!d)d={};var g=d;if(!j||!g)g={};b.set_url(Sys.Net.WebRequest._createUrl(k+"/"+encodeURIComponent(a),g));var e=null;if(!j){e=Sys.Serialization.JavaScriptSerializer.serialize(d);if(e==="{}")e=""}b.set_body(e);b.add_completed(l);if(h&&h>0)b.set_timeout(h);b.invoke();function l(d){if(d.get_responseAvailable()){var g=d.get_statusCode(),b=null;try{var e=d.getResponseHeader("Content-Type");if(e.startsWith("application/json"))b=d.get_object();else if(e.startsWith("text/xml"))b=d.get_xml();else b=d.get_responseData()}catch(m){}var k=d.getResponseHeader("jsonerror"),h=k==="true";if(h){if(b)b=new Sys.Net.WebServiceError(false,b.Message,b.StackTrace,b.ExceptionType)}else if(e.startsWith("application/json"))b=b.d;if(g<200||g>=300||h){if(c){if(!b||!h)b=new Sys.Net.WebServiceError(false,String.format(Sys.Res.webServiceFailedNoMsg,a),"","");b._statusCode=g;c(b,f,a)}}else if(i)i(b,f,a)}else{var j;if(d.get_timedOut())j=String.format(Sys.Res.webServiceTimedOut,a);else j=String.format(Sys.Res.webServiceFailedNoMsg,a);if(c)c(new Sys.Net.WebServiceError(d.get_timedOut(),j,"",""),f,a)}}return b};Sys.Net.WebServiceProxy._generateTypedConstructor=function(a){return function(b){if(b)for(var c in b)this[c]=b[c];this.__type=a}};Sys.Net.WebServiceError=function(c,d,b,a){this._timedOut=c;this._message=d;this._stackTrace=b;this._exceptionType=a;this._statusCode=-1};Sys.Net.WebServiceError.prototype={get_timedOut:function(){return this._timedOut},get_statusCode:function(){return this._statusCode},get_message:function(){return this._message},get_stackTrace:function(){return this._stackTrace},get_exceptionType:function(){return this._exceptionType}};Sys.Net.WebServiceError.registerClass("Sys.Net.WebServiceError");Type.registerNamespace("Sys.Services");Sys.Services._ProfileService=function(){Sys.Services._ProfileService.initializeBase(this);this.properties={}};Sys.Services._ProfileService.DefaultWebServicePath="";Sys.Services._ProfileService.prototype={_defaultLoadCompletedCallback:null,_defaultSaveCompletedCallback:null,_path:"",_timeout:0,get_defaultLoadCompletedCallback:function(){return this._defaultLoadCompletedCallback},set_defaultLoadCompletedCallback:function(a){this._defaultLoadCompletedCallback=a},get_defaultSaveCompletedCallback:function(){return this._defaultSaveCompletedCallback},set_defaultSaveCompletedCallback:function(a){this._defaultSaveCompletedCallback=a},get_path:function(){return this._path||""},load:function(c,d,e,f){var b,a;if(!c){a="GetAllPropertiesForCurrentUser";b={authenticatedUserOnly:false}}else{a="GetPropertiesForCurrentUser";b={properties:this._clonePropertyNames(c),authenticatedUserOnly:false}}this._invoke(this._get_path(),a,false,b,Function.createDelegate(this,this._onLoadComplete),Function.createDelegate(this,this._onLoadFailed),[d,e,f])},save:function(d,b,c,e){var a=this._flattenProperties(d,this.properties);this._invoke(this._get_path(),"SetPropertiesForCurrentUser",false,{values:a.value,authenticatedUserOnly:false},Function.createDelegate(this,this._onSaveComplete),Function.createDelegate(this,this._onSaveFailed),[b,c,e,a.count])},_clonePropertyNames:function(e){var c=[],d={};for(var b=0;b<e.length;b++){var a=e[b];if(!d[a]){Array.add(c,a);d[a]=true}}return c},_flattenProperties:function(a,i,j){var b={},e,d,g=0;if(a&&a.length===0)return {value:b,count:0};for(var c in i){e=i[c];d=j?j+"."+c:c;if(Sys.Services.ProfileGroup.isInstanceOfType(e)){var k=this._flattenProperties(a,e,d),h=k.value;g+=k.count;for(var f in h){var l=h[f];b[f]=l}}else if(!a||Array.indexOf(a,d)!==-1){b[d]=e;g++}}return {value:b,count:g}},_get_path:function(){var a=this.get_path();if(!a.length)a=Sys.Services._ProfileService.DefaultWebServicePath;if(!a||!a.length)throw Error.invalidOperation(Sys.Res.servicePathNotSet);return a},_onLoadComplete:function(a,e,g){if(typeof a!=="object")throw Error.invalidOperation(String.format(Sys.Res.webServiceInvalidReturnType,g,"Object"));var c=this._unflattenProperties(a);for(var b in c)this.properties[b]=c[b];var d=e[0]||this.get_defaultLoadCompletedCallback()||this.get_defaultSucceededCallback();if(d){var f=e[2]||this.get_defaultUserContext();d(a.length,f,"Sys.Services.ProfileService.load")}},_onLoadFailed:function(d,b){var a=b[1]||this.get_defaultFailedCallback();if(a){var c=b[2]||this.get_defaultUserContext();a(d,c,"Sys.Services.ProfileService.load")}},_onSaveComplete:function(a,b,f){var c=b[3];if(a!==null)if(a instanceof Array)c-=a.length;else if(typeof a==="number")c=a;else throw Error.invalidOperation(String.format(Sys.Res.webServiceInvalidReturnType,f,"Array"));var d=b[0]||this.get_defaultSaveCompletedCallback()||this.get_defaultSucceededCallback();if(d){var e=b[2]||this.get_defaultUserContext();d(c,e,"Sys.Services.ProfileService.save")}},_onSaveFailed:function(d,b){var a=b[1]||this.get_defaultFailedCallback();if(a){var c=b[2]||this.get_defaultUserContext();a(d,c,"Sys.Services.ProfileService.save")}},_unflattenProperties:function(e){var c={},d,f,h=0;for(var a in e){h++;f=e[a];d=a.indexOf(".");if(d!==-1){var g=a.substr(0,d);a=a.substr(d+1);var b=c[g];if(!b||!Sys.Services.ProfileGroup.isInstanceOfType(b)){b=new Sys.Services.ProfileGroup;c[g]=b}b[a]=f}else c[a]=f}e.length=h;return c}};Sys.Services._ProfileService.registerClass("Sys.Services._ProfileService",Sys.Net.WebServiceProxy);Sys.Services.ProfileService=new Sys.Services._ProfileService;Sys.Services.ProfileGroup=function(a){if(a)for(var b in a)this[b]=a[b]};Sys.Services.ProfileGroup.registerClass("Sys.Services.ProfileGroup");Sys.Services._AuthenticationService=function(){Sys.Services._AuthenticationService.initializeBase(this)};Sys.Services._AuthenticationService.DefaultWebServicePath="";Sys.Services._AuthenticationService.prototype={_defaultLoginCompletedCallback:null,_defaultLogoutCompletedCallback:null,_path:"",_timeout:0,_authenticated:false,get_defaultLoginCompletedCallback:function(){return this._defaultLoginCompletedCallback},set_defaultLoginCompletedCallback:function(a){this._defaultLoginCompletedCallback=a},get_defaultLogoutCompletedCallback:function(){return this._defaultLogoutCompletedCallback},set_defaultLogoutCompletedCallback:function(a){this._defaultLogoutCompletedCallback=a},get_isLoggedIn:function(){return this._authenticated},get_path:function(){return this._path||""},login:function(c,b,a,h,f,d,e,g){this._invoke(this._get_path(),"Login",false,{userName:c,password:b,createPersistentCookie:a},Function.createDelegate(this,this._onLoginComplete),Function.createDelegate(this,this._onLoginFailed),[c,b,a,h,f,d,e,g])},logout:function(c,a,b,d){this._invoke(this._get_path(),"Logout",false,{},Function.createDelegate(this,this._onLogoutComplete),Function.createDelegate(this,this._onLogoutFailed),[c,a,b,d])},_get_path:function(){var a=this.get_path();if(!a.length)a=Sys.Services._AuthenticationService.DefaultWebServicePath;if(!a||!a.length)throw Error.invalidOperation(Sys.Res.servicePathNotSet);return a},_onLoginComplete:function(e,c,f){if(typeof e!=="boolean")throw Error.invalidOperation(String.format(Sys.Res.webServiceInvalidReturnType,f,"Boolean"));var b=c[4],d=c[7]||this.get_defaultUserContext(),a=c[5]||this.get_defaultLoginCompletedCallback()||this.get_defaultSucceededCallback();if(e){this._authenticated=true;if(a)a(true,d,"Sys.Services.AuthenticationService.login");if(typeof b!=="undefined"&&b!==null)window.location.href=b}else if(a)a(false,d,"Sys.Services.AuthenticationService.login")},_onLoginFailed:function(d,b){var a=b[6]||this.get_defaultFailedCallback();if(a){var c=b[7]||this.get_defaultUserContext();a(d,c,"Sys.Services.AuthenticationService.login")}},_onLogoutComplete:function(f,a,e){if(f!==null)throw Error.invalidOperation(String.format(Sys.Res.webServiceInvalidReturnType,e,"null"));var b=a[0],d=a[3]||this.get_defaultUserContext(),c=a[1]||this.get_defaultLogoutCompletedCallback()||this.get_defaultSucceededCallback();this._authenticated=false;if(c)c(null,d,"Sys.Services.AuthenticationService.logout");if(!b)window.location.reload();else window.location.href=b},_onLogoutFailed:function(c,b){var a=b[2]||this.get_defaultFailedCallback();if(a)a(c,b[3],"Sys.Services.AuthenticationService.logout")},_setAuthenticated:function(a){this._authenticated=a}};Sys.Services._AuthenticationService.registerClass("Sys.Services._AuthenticationService",Sys.Net.WebServiceProxy);Sys.Services.AuthenticationService=new Sys.Services._AuthenticationService;Sys.Services._RoleService=function(){Sys.Services._RoleService.initializeBase(this);this._roles=[]};Sys.Services._RoleService.DefaultWebServicePath="";Sys.Services._RoleService.prototype={_defaultLoadCompletedCallback:null,_rolesIndex:null,_timeout:0,_path:"",get_defaultLoadCompletedCallback:function(){return this._defaultLoadCompletedCallback},set_defaultLoadCompletedCallback:function(a){this._defaultLoadCompletedCallback=a},get_path:function(){return this._path||""},get_roles:function(){return Array.clone(this._roles)},isUserInRole:function(a){var b=this._get_rolesIndex()[a.trim().toLowerCase()];return !!b},load:function(a,b,c){Sys.Net.WebServiceProxy.invoke(this._get_path(),"GetRolesForCurrentUser",false,{},Function.createDelegate(this,this._onLoadComplete),Function.createDelegate(this,this._onLoadFailed),[a,b,c],this.get_timeout())},_get_path:function(){var a=this.get_path();if(!a||!a.length)a=Sys.Services._RoleService.DefaultWebServicePath;if(!a||!a.length)throw Error.invalidOperation(Sys.Res.servicePathNotSet);return a},_get_rolesIndex:function(){if(!this._rolesIndex){var b={};for(var a=0;a<this._roles.length;a++)b[this._roles[a].toLowerCase()]=true;this._rolesIndex=b}return this._rolesIndex},_onLoadComplete:function(a,c,f){if(a&&!(a instanceof Array))throw Error.invalidOperation(String.format(Sys.Res.webServiceInvalidReturnType,f,"Array"));this._roles=a;this._rolesIndex=null;var b=c[0]||this.get_defaultLoadCompletedCallback()||this.get_defaultSucceededCallback();if(b){var e=c[2]||this.get_defaultUserContext(),d=Array.clone(a);b(d,e,"Sys.Services.RoleService.load")}},_onLoadFailed:function(d,b){var a=b[1]||this.get_defaultFailedCallback();if(a){var c=b[2]||this.get_defaultUserContext();a(d,c,"Sys.Services.RoleService.load")}}};Sys.Services._RoleService.registerClass("Sys.Services._RoleService",Sys.Net.WebServiceProxy);Sys.Services.RoleService=new Sys.Services._RoleService;Type.registerNamespace("Sys.Serialization");Sys.Serialization.JavaScriptSerializer=function(){};Sys.Serialization.JavaScriptSerializer.registerClass("Sys.Serialization.JavaScriptSerializer");Sys.Serialization.JavaScriptSerializer._serverTypeFieldName="__type";Sys.Serialization.JavaScriptSerializer._stringRegEx=new RegExp('["\b\f\n\r\t\\\\\x00-\x1f]',"i");Sys.Serialization.JavaScriptSerializer._dateRegEx=new RegExp('(^|[^\\\\])\\"\\\\/Date\\((-?[0-9]+)(?:[a-zA-Z]|(?:\\+|-)[0-9]{4})?\\)\\\\/\\"',"g");Sys.Serialization.JavaScriptSerializer._jsonRegEx=new RegExp("[^,:{}\\[\\]0-9.\\-+Eaeflnr-u \\n\\r\\t]","g");Sys.Serialization.JavaScriptSerializer._jsonStringRegEx=new RegExp('"(\\\\.|[^"\\\\])*"',"g");Sys.Serialization.JavaScriptSerializer._serializeWithBuilder=function(b,a,j,h){var c;switch(typeof b){case "object":if(b)if(Array.isInstanceOfType(b)){a.append("[");for(c=0;c<b.length;++c){if(c>0)a.append(",");Sys.Serialization.JavaScriptSerializer._serializeWithBuilder(b[c],a,false,h)}a.append("]")}else{if(Date.isInstanceOfType(b)){a.append('"\\/Date(');a.append(b.getTime());a.append(')\\/"');break}var d=[],g=0;for(var f in b){if(f.startsWith("$"))continue;if(f===Sys.Serialization.JavaScriptSerializer._serverTypeFieldName&&g!==0){d[g++]=d[0];d[0]=f}else d[g++]=f}if(j)d.sort();a.append("{");var k=false;for(c=0;c<g;c++){var i=b[d[c]];if(typeof i!=="undefined"&&typeof i!=="function"){if(k)a.append(",");else k=true;Sys.Serialization.JavaScriptSerializer._serializeWithBuilder(d[c],a,j,h);a.append(":");Sys.Serialization.JavaScriptSerializer._serializeWithBuilder(i,a,j,h)}}a.append("}")}else a.append("null");break;case "number":if(isFinite(b))a.append(String(b));else throw Error.invalidOperation(Sys.Res.cannotSerializeNonFiniteNumbers);break;case "string":a.append('"');if(Sys.Browser.agent===Sys.Browser.Safari||Sys.Serialization.JavaScriptSerializer._stringRegEx.test(b)){var l=b.length;for(c=0;c<l;++c){var e=b.charAt(c);if(e>=" "){if(e==="\\"||e==='"')a.append("\\");a.append(e)}else switch(e){case "\b":a.append("\\b");break;case "\f":a.append("\\f");break;case "\n":a.append("\\n");break;case "\r":a.append("\\r");break;case "\t":a.append("\\t");break;default:a.append("\\u00");if(e.charCodeAt()<16)a.append("0");a.append(e.charCodeAt().toString(16))}}}else a.append(b);a.append('"');break;case "boolean":a.append(b.toString());break;default:a.append("null")}};Sys.Serialization.JavaScriptSerializer.serialize=function(b){var a=new Sys.StringBuilder;Sys.Serialization.JavaScriptSerializer._serializeWithBuilder(b,a,false);return a.toString()};Sys.Serialization.JavaScriptSerializer.deserialize=function(data,secure){if(data.length===0)throw Error.argument("data",Sys.Res.cannotDeserializeEmptyString);try{var exp=data.replace(Sys.Serialization.JavaScriptSerializer._dateRegEx,"$1new Date($2)");if(secure&&Sys.Serialization.JavaScriptSerializer._jsonRegEx.test(exp.replace(Sys.Serialization.JavaScriptSerializer._jsonStringRegEx,"")))throw null;return eval("("+exp+")")}catch(a){throw Error.argument("data",Sys.Res.cannotDeserializeInvalidJson)}};Sys.CultureInfo=function(c,b,a){this.name=c;this.numberFormat=b;this.dateTimeFormat=a};Sys.CultureInfo.prototype={_getDateTimeFormats:function(){if(!this._dateTimeFormats){var a=this.dateTimeFormat;this._dateTimeFormats=[a.MonthDayPattern,a.YearMonthPattern,a.ShortDatePattern,a.ShortTimePattern,a.LongDatePattern,a.LongTimePattern,a.FullDateTimePattern,a.RFC1123Pattern,a.SortableDateTimePattern,a.UniversalSortableDateTimePattern]}return this._dateTimeFormats},_getMonthIndex:function(a){if(!this._upperMonths)this._upperMonths=this._toUpperArray(this.dateTimeFormat.MonthNames);return Array.indexOf(this._upperMonths,this._toUpper(a))},_getAbbrMonthIndex:function(a){if(!this._upperAbbrMonths)this._upperAbbrMonths=this._toUpperArray(this.dateTimeFormat.AbbreviatedMonthNames);return Array.indexOf(this._upperAbbrMonths,this._toUpper(a))},_getDayIndex:function(a){if(!this._upperDays)this._upperDays=this._toUpperArray(this.dateTimeFormat.DayNames);return Array.indexOf(this._upperDays,this._toUpper(a))},_getAbbrDayIndex:function(a){if(!this._upperAbbrDays)this._upperAbbrDays=this._toUpperArray(this.dateTimeFormat.AbbreviatedDayNames);return Array.indexOf(this._upperAbbrDays,this._toUpper(a))},_toUpperArray:function(c){var b=[];for(var a=0,d=c.length;a<d;a++)b[a]=this._toUpper(c[a]);return b},_toUpper:function(a){return a.split("\u00a0").join(" ").toUpperCase()}};Sys.CultureInfo._parse=function(b){var a=Sys.Serialization.JavaScriptSerializer.deserialize(b);return new Sys.CultureInfo(a.name,a.numberFormat,a.dateTimeFormat)};Sys.CultureInfo.registerClass("Sys.CultureInfo");Sys.CultureInfo.InvariantCulture=Sys.CultureInfo._parse('{"name":"","numberFormat":{"CurrencyDecimalDigits":2,"CurrencyDecimalSeparator":".","IsReadOnly":true,"CurrencyGroupSizes":[3],"NumberGroupSizes":[3],"PercentGroupSizes":[3],"CurrencyGroupSeparator":",","CurrencySymbol":"\u00a4","NaNSymbol":"NaN","CurrencyNegativePattern":0,"NumberNegativePattern":1,"PercentPositivePattern":0,"PercentNegativePattern":0,"NegativeInfinitySymbol":"-Infinity","NegativeSign":"-","NumberDecimalDigits":2,"NumberDecimalSeparator":".","NumberGroupSeparator":",","CurrencyPositivePattern":0,"PositiveInfinitySymbol":"Infinity","PositiveSign":"+","PercentDecimalDigits":2,"PercentDecimalSeparator":".","PercentGroupSeparator":",","PercentSymbol":"%","PerMilleSymbol":"\u2030","NativeDigits":["0","1","2","3","4","5","6","7","8","9"],"DigitSubstitution":1},"dateTimeFormat":{"AMDesignator":"AM","Calendar":{"MinSupportedDateTime":"@-62135568000000@","MaxSupportedDateTime":"@253402300799999@","AlgorithmType":1,"CalendarType":1,"Eras":[1],"TwoDigitYearMax":2029,"IsReadOnly":true},"DateSeparator":"/","FirstDayOfWeek":0,"CalendarWeekRule":0,"FullDateTimePattern":"dddd, dd MMMM yyyy HH:mm:ss","LongDatePattern":"dddd, dd MMMM yyyy","LongTimePattern":"HH:mm:ss","MonthDayPattern":"MMMM dd","PMDesignator":"PM","RFC1123Pattern":"ddd, dd MMM yyyy HH\':\'mm\':\'ss \'GMT\'","ShortDatePattern":"MM/dd/yyyy","ShortTimePattern":"HH:mm","SortableDateTimePattern":"yyyy\'-\'MM\'-\'dd\'T\'HH\':\'mm\':\'ss","TimeSeparator":":","UniversalSortableDateTimePattern":"yyyy\'-\'MM\'-\'dd HH\':\'mm\':\'ss\'Z\'","YearMonthPattern":"yyyy MMMM","AbbreviatedDayNames":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"ShortestDayNames":["Su","Mo","Tu","We","Th","Fr","Sa"],"DayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"AbbreviatedMonthNames":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec",""],"MonthNames":["January","February","March","April","May","June","July","August","September","October","November","December",""],"IsReadOnly":true,"NativeCalendarName":"Gregorian Calendar","AbbreviatedMonthGenitiveNames":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec",""],"MonthGenitiveNames":["January","February","March","April","May","June","July","August","September","October","November","December",""]}}');if(typeof __cultureInfo==="undefined")var __cultureInfo='{"name":"en-US","numberFormat":{"CurrencyDecimalDigits":2,"CurrencyDecimalSeparator":".","IsReadOnly":false,"CurrencyGroupSizes":[3],"NumberGroupSizes":[3],"PercentGroupSizes":[3],"CurrencyGroupSeparator":",","CurrencySymbol":"$","NaNSymbol":"NaN","CurrencyNegativePattern":0,"NumberNegativePattern":1,"PercentPositivePattern":0,"PercentNegativePattern":0,"NegativeInfinitySymbol":"-Infinity","NegativeSign":"-","NumberDecimalDigits":2,"NumberDecimalSeparator":".","NumberGroupSeparator":",","CurrencyPositivePattern":0,"PositiveInfinitySymbol":"Infinity","PositiveSign":"+","PercentDecimalDigits":2,"PercentDecimalSeparator":".","PercentGroupSeparator":",","PercentSymbol":"%","PerMilleSymbol":"\u2030","NativeDigits":["0","1","2","3","4","5","6","7","8","9"],"DigitSubstitution":1},"dateTimeFormat":{"AMDesignator":"AM","Calendar":{"MinSupportedDateTime":"@-62135568000000@","MaxSupportedDateTime":"@253402300799999@","AlgorithmType":1,"CalendarType":1,"Eras":[1],"TwoDigitYearMax":2029,"IsReadOnly":false},"DateSeparator":"/","FirstDayOfWeek":0,"CalendarWeekRule":0,"FullDateTimePattern":"dddd, MMMM dd, yyyy h:mm:ss tt","LongDatePattern":"dddd, MMMM dd, yyyy","LongTimePattern":"h:mm:ss tt","MonthDayPattern":"MMMM dd","PMDesignator":"PM","RFC1123Pattern":"ddd, dd MMM yyyy HH\':\'mm\':\'ss \'GMT\'","ShortDatePattern":"M/d/yyyy","ShortTimePattern":"h:mm tt","SortableDateTimePattern":"yyyy\'-\'MM\'-\'dd\'T\'HH\':\'mm\':\'ss","TimeSeparator":":","UniversalSortableDateTimePattern":"yyyy\'-\'MM\'-\'dd HH\':\'mm\':\'ss\'Z\'","YearMonthPattern":"MMMM, yyyy","AbbreviatedDayNames":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"ShortestDayNames":["Su","Mo","Tu","We","Th","Fr","Sa"],"DayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"AbbreviatedMonthNames":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec",""],"MonthNames":["January","February","March","April","May","June","July","August","September","October","November","December",""],"IsReadOnly":false,"NativeCalendarName":"Gregorian Calendar","AbbreviatedMonthGenitiveNames":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec",""],"MonthGenitiveNames":["January","February","March","April","May","June","July","August","September","October","November","December",""]}}';Sys.CultureInfo.CurrentCulture=Sys.CultureInfo._parse(__cultureInfo);delete __cultureInfo;Sys.UI.Behavior=function(b){Sys.UI.Behavior.initializeBase(this);this._element=b;var a=b._behaviors;if(!a)b._behaviors=[this];else a[a.length]=this};Sys.UI.Behavior.prototype={_name:null,get_element:function(){return this._element},get_id:function(){var a=Sys.UI.Behavior.callBaseMethod(this,"get_id");if(a)return a;if(!this._element||!this._element.id)return "";return this._element.id+"$"+this.get_name()},get_name:function(){if(this._name)return this._name;var a=Object.getTypeName(this),b=a.lastIndexOf(".");if(b!=-1)a=a.substr(b+1);if(!this.get_isInitialized())this._name=a;return a},set_name:function(a){this._name=a},initialize:function(){Sys.UI.Behavior.callBaseMethod(this,"initialize");var a=this.get_name();if(a)this._element[a]=this},dispose:function(){Sys.UI.Behavior.callBaseMethod(this,"dispose");if(this._element){var a=this.get_name();if(a)this._element[a]=null;Array.remove(this._element._behaviors,this);delete this._element}}};Sys.UI.Behavior.registerClass("Sys.UI.Behavior",Sys.Component);Sys.UI.Behavior.getBehaviorByName=function(b,c){var a=b[c];return a&&Sys.UI.Behavior.isInstanceOfType(a)?a:null};Sys.UI.Behavior.getBehaviors=function(a){if(!a._behaviors)return [];return Array.clone(a._behaviors)};Sys.UI.Behavior.getBehaviorsByType=function(d,e){var a=d._behaviors,c=[];if(a)for(var b=0,f=a.length;b<f;b++)if(e.isInstanceOfType(a[b]))c[c.length]=a[b];return c};Sys.UI.VisibilityMode=function(){throw Error.notImplemented()};Sys.UI.VisibilityMode.prototype={hide:0,collapse:1};Sys.UI.VisibilityMode.registerEnum("Sys.UI.VisibilityMode");Sys.UI.Control=function(a){Sys.UI.Control.initializeBase(this);this._element=a;a.control=this};Sys.UI.Control.prototype={_parent:null,_visibilityMode:Sys.UI.VisibilityMode.hide,get_element:function(){return this._element},get_id:function(){if(!this._element)return "";return this._element.id},set_id:function(){throw Error.invalidOperation(Sys.Res.cantSetId)},get_parent:function(){if(this._parent)return this._parent;if(!this._element)return null;var a=this._element.parentNode;while(a){if(a.control)return a.control;a=a.parentNode}return null},set_parent:function(a){this._parent=a},get_visibilityMode:function(){return Sys.UI.DomElement.getVisibilityMode(this._element)},set_visibilityMode:function(a){Sys.UI.DomElement.setVisibilityMode(this._element,a)},get_visible:function(){return Sys.UI.DomElement.getVisible(this._element)},set_visible:function(a){Sys.UI.DomElement.setVisible(this._element,a)},addCssClass:function(a){Sys.UI.DomElement.addCssClass(this._element,a)},dispose:function(){Sys.UI.Control.callBaseMethod(this,"dispose");if(this._element){this._element.control=undefined;delete this._element}if(this._parent)delete this._parent},onBubbleEvent:function(){return false},raiseBubbleEvent:function(b,c){var a=this.get_parent();while(a){if(a.onBubbleEvent(b,c))return;a=a.get_parent()}},removeCssClass:function(a){Sys.UI.DomElement.removeCssClass(this._element,a)},toggleCssClass:function(a){Sys.UI.DomElement.toggleCssClass(this._element,a)}};Sys.UI.Control.registerClass("Sys.UI.Control",Sys.Component);Type.registerNamespace('Sys');Sys.Res={"argumentInteger":"Value must be an integer.","scriptLoadMultipleCallbacks":"The script \u0027{0}\u0027 contains multiple calls to Sys.Application.notifyScriptLoaded(). Only one is allowed.","invokeCalledTwice":"Cannot call invoke more than once.","webServiceFailed":"The server method \u0027{0}\u0027 failed with the following error: {1}","webServiceInvalidJsonWrapper":"The server method \u0027{0}\u0027 returned invalid data. The \u0027d\u0027 property is missing from the JSON wrapper.","argumentType":"Object cannot be converted to the required type.","argumentNull":"Value cannot be null.","controlCantSetId":"The id property can\u0027t be set on a control.","formatBadFormatSpecifier":"Format specifier was invalid.","webServiceFailedNoMsg":"The server method \u0027{0}\u0027 failed.","argumentDomElement":"Value must be a DOM element.","invalidExecutorType":"Could not create a valid Sys.Net.WebRequestExecutor from: {0}.","cannotCallBeforeResponse":"Cannot call {0} when responseAvailable is false.","actualValue":"Actual value was {0}.","enumInvalidValue":"\u0027{0}\u0027 is not a valid value for enum {1}.","scriptLoadFailed":"The script \u0027{0}\u0027 could not be loaded.","parameterCount":"Parameter count mismatch.","cannotDeserializeEmptyString":"Cannot deserialize empty string.","formatInvalidString":"Input string was not in a correct format.","invalidTimeout":"Value must be greater than or equal to zero.","cannotAbortBeforeStart":"Cannot abort when executor has not started.","argument":"Value does not fall within the expected range.","cannotDeserializeInvalidJson":"Cannot deserialize. The data does not correspond to valid JSON.","invalidHttpVerb":"httpVerb cannot be set to an empty or null string.","nullWebRequest":"Cannot call executeRequest with a null webRequest.","eventHandlerInvalid":"Handler was not added through the Sys.UI.DomEvent.addHandler method.","cannotSerializeNonFiniteNumbers":"Cannot serialize non finite numbers.","argumentUndefined":"Value cannot be undefined.","webServiceInvalidReturnType":"The server method \u0027{0}\u0027 returned an invalid type. Expected type: {1}","servicePathNotSet":"The path to the web service has not been set.","argumentTypeWithTypes":"Object of type \u0027{0}\u0027 cannot be converted to type \u0027{1}\u0027.","cannotCallOnceStarted":"Cannot call {0} once started.","badBaseUrl1":"Base URL does not contain ://.","badBaseUrl2":"Base URL does not contain another /.","badBaseUrl3":"Cannot find last / in base URL.","setExecutorAfterActive":"Cannot set executor after it has become active.","paramName":"Parameter name: {0}","cannotCallOutsideHandler":"Cannot call {0} outside of a completed event handler.","cannotSerializeObjectWithCycle":"Cannot serialize object with cyclic reference within child properties.","format":"One of the identified items was in an invalid format.","assertFailedCaller":"Assertion Failed: {0}\r\nat {1}","argumentOutOfRange":"Specified argument was out of the range of valid values.","webServiceTimedOut":"The server method \u0027{0}\u0027 timed out.","notImplemented":"The method or operation is not implemented.","assertFailed":"Assertion Failed: {0}","invalidOperation":"Operation is not valid due to the current state of the object.","breakIntoDebugger":"{0}\r\n\r\nBreak into debugger?"};if(typeof(Sys)!=='undefined')Sys.Application.notifyScriptLoaded();
// xaml.js:
Type.registerNamespace("Sys.Preview.UI.Xaml");Sys.Preview.UI.Xaml.scriptVersion="1.0.070716.0";Sys.Preview.UI.Xaml.ScaleMode=function(){throw Error.notImplemented()};Sys.Preview.UI.Xaml.ScaleMode.prototype={none:0,zoom:1,stretch:2};Sys.Preview.UI.Xaml.ScaleMode.registerEnum("Sys.Preview.UI.Xaml.ScaleMode");Sys.Preview.UI.Xaml.ErrorEventArgs=function(a){this._xamlError=a;Sys.Preview.UI.Xaml.ErrorEventArgs.initializeBase(this)};Sys.Preview.UI.Xaml.ErrorEventArgs.prototype={_xamlError:null,get_error:function(){return this._xamlError}};Sys.Preview.UI.Xaml.ErrorEventArgs.registerClass("Sys.Preview.UI.Xaml.ErrorEventArgs",Sys.CancelEventArgs);Sys.Preview.UI.Xaml.Control=function(a){Sys.Preview.UI.Xaml.Control.initializeBase(this,[a])};Sys.Preview.UI.Xaml.Control.prototype={_minimumVersion:"1.0",_xamlSource:null,_xamlInitialized:false,_scaleMode:Sys.Preview.UI.Xaml.ScaleMode.none,_resizeDelegate:null,_boundEvents:null,add_xamlError:function(a){this.get_events().addHandler("xamlError",a)},remove_xamlError:function(a){this.get_events().removeHandler("xamlError",a)},add_resize:function(a){this.get_events().addHandler("resize",a)},remove_resize:function(a){this.get_events().removeHandler("resize",a)},add_xamlInitialized:function(a){this.get_events().addHandler("xamlInitialized",a)},remove_xamlInitialized:function(a){this.get_events().removeHandler("xamlInitialized",a)},get_scaleMode:function(){return this._scaleMode},set_scaleMode:function(a){this._scaleMode=a;if(this._xamlInitialized&&a!==Sys.Preview.UI.Xaml.ScaleMode.none)this._ensureTransform()},get_minimumSilverlightVersion:function(){return this._minimumVersion||""},set_minimumSilverlightVersion:function(a){this._minimumVersion=a},get_xamlSource:function(){return this._xamlSource||""},set_xamlSource:function(a){this._xamlSource=a},addEventListener:function(b,a,d){if(!this._boundEvents)this._boundEvents=[];var c=b.addEventListener(a,d);this._boundEvents[this._boundEvents.length]={element:b,eventName:a,token:c};return c},addEventListeners:function(f,d,c){var e={};for(var a in d){var b=d[a];if(c)b=Function.createDelegate(c,b);e[a]=this.addEventListener(f,a,b)}return e},dispose:function(){var a=this.get_element();if(a){if(this._resizeDelegate){a.content.onResize=null;this._resizeDelegate=null}a.OnLoad=null;a.OnError=null}if(this._xamlInitialized){this.xamlDispose();this._xamlInitialized=false}if(this._boundEvents){for(var c=0,d=this._boundEvents.length;c<d;c++){var b=this._boundEvents[c];b.element.removeEventListener(b.eventName,b.token)}this._boundEvents=null}Sys.Preview.UI.Xaml.Control.callBaseMethod(this,"dispose")},initialize:function(){Sys.Preview.UI.Xaml.Control.callBaseMethod(this,"initialize");if(Sys.Preview.UI.Xaml.Control._ensureVersion(this)){var a=this.get_element();a.OnError=Function.createDelegate(this,this._xamlError);var b=this.get_xamlSource();if(b&&(typeof a.Source==="undefined"||a.Source!==b)){a.OnLoad=Function.createDelegate(this,this._xamlLoaded);a.Source=b}else this._raiseXamlInitialize()}},onResize:function(){},onXamlError:function(){},xamlDispose:function(){},xamlInitialize:function(){},_ensureTransform:function(){var b=this.get_element().content.root,a=Sys.Preview.UI.Xaml.Control._computeScale(b),c,d;if(this.get_scaleMode()===Sys.Preview.UI.Xaml.ScaleMode.zoom)c=d=Math.min(a.horizontal,a.vertical);else{c=a.horizontal;d=a.vertical}Sys.Preview.UI.Xaml.Control._ensureScale(b,c,d);if(!this._resizeDelegate){this._resizeDelegate=Function.createDelegate(this,this._onResize);b.getHost().content.onResize=this._resizeDelegate}},_onResize:function(){var c=this.get_element();if(c&&this.get_scaleMode()!==Sys.Preview.UI.Xaml.ScaleMode.none){this._ensureTransform();var b=Sys.EventArgs.Empty;this.onResize(b);var a=this.get_events().getHandler("resize");if(a)a(this,b)}},_raiseXamlError:function(c,a){this.onXamlError(a);if(!a.get_cancel()){var b=this.get_events().getHandler("xamlError");if(b)b(this,a)}},_raiseXamlInitialize:function(){if(this.get_scaleMode()!==Sys.Preview.UI.Xaml.ScaleMode.none)this._ensureTransform();this._xamlInitialized=true;this.xamlInitialize();var a=this.get_events().getHandler("xamlInitialized");if(a)a(this,Sys.EventArgs.Empty)},_xamlError:function(b,c){var a=this.get_element();if(a)this._raiseXamlError(b,new Sys.Preview.UI.Xaml.ErrorEventArgs(c))},_xamlLoaded:function(){var a=this.get_element();if(a){a.OnLoad=null;this._raiseXamlInitialize()}}};Sys.Preview.UI.Xaml.Control._computeScale=function(a){var c=a.width,b=a.height,d=a.getHost(),e=c?d.content.ActualWidth/c:0,f=b?d.content.ActualHeight/b:0;return {horizontal:e,vertical:f}};Sys.Preview.UI.Xaml.Control._ensureScale=function(b,c,d){var a=b.RenderTransform;if(!a)b.RenderTransform=a=b.getHost().content.createFromXaml('<ScaleTransform ScaleX="1" ScaleY="1"/>');a.ScaleX=c;a.ScaleY=d};Sys.Preview.UI.Xaml.Control.registerClass("Sys.Preview.UI.Xaml.Control",Sys.UI.Control);Sys.Preview.UI.Xaml.Control._ensureVersion=function(a){if(!Sys.Preview.UI.Xaml.Control._isMinimumVersion(a)){Sys.Preview.UI.Xaml.Control._showInstallPrompt(a);return false}else return true};Sys.Preview.UI.Xaml.Control._baseFWLink="http://go.microsoft.com/fwlink/?LinkID=";Sys.Preview.UI.Xaml.Control._getFWLinksAlpha=function(b){b=b&&navigator.userAgent.indexOf("PPC Mac OS X")===-1;var a={image2:null,privacy:null,eula:null};a.image1=Sys.Preview.UI.Xaml.Control._installed?"94378":"92810";if(b){if(navigator.userAgent.indexOf("Windows NT")!==-1)a.install="92809";else if(navigator.userAgent.indexOf("Mac OS X")!==-1)a.install="92813"}else a.install="92821";var c=Sys.Preview.UI.Xaml.Control._baseFWLink;a.image1=c+a.image1;a.installHtml=Sys.Preview.UI.Xaml.Res.linkedInstallHtml;return a};Sys.Preview.UI.Xaml.Control._getFWLinks=function(e){var c=Sys.Browser.agent===Sys.Browser.InternetExplorer&&Sys.Browser.version>=6&&navigator.userAgent.indexOf("Win64")===-1&&navigator.userAgent.indexOf("Mac OS X")===-1||Sys.Browser.agent===Sys.Browser.Firefox&&Sys.Browser.version>=1.5||Sys.Browser.agent===Sys.Browser.Safari&&navigator.userAgent.indexOf("Windows NT")===-1,d=0;try{d=parseFloat(e)}catch(f){}if(d>=1.1)return Sys.Preview.UI.Xaml.Control._getFWLinksAlpha(c);var a={install:"92822",eula:"93481",privacy:"93483"};if(Sys.Preview.UI.Xaml.Control._installed){a.image1="94376";a.image2="94382"}else{a.image1="92802";a.image2="94381"}if(c)if(navigator.userAgent.indexOf("Windows NT")!==-1){a.install="92799";a.eula="92803";a.privacy="92805"}else if(navigator.userAgent.indexOf("PPC Mac OS X")!==-1){a.install="92807";a.eula="92815";a.privacy="92816"}else if(navigator.userAgent.indexOf("Intel Mac OS X")!==-1){a.install="92808";a.eula="92804";a.privacy="92806"}var b=Sys.Preview.UI.Xaml.Control._baseFWLink;a.image1=b+a.image1;a.image2=b+a.image2;a.eula=b+a.eula;a.privacy=b+a.privacy;a.installHtml=Sys.Preview.UI.Xaml.Res.inlineInstallHtml;return a};Sys.Preview.UI.Xaml.Control._isMinimumVersion=function(b){var a=b.get_minimumSilverlightVersion();if(!a)return true;var c=b.get_element();if(typeof c.IsVersionSupported!=="undefined"){Sys.Preview.UI.Xaml.Control._installed=true;return c.IsVersionSupported(a)}Sys.Preview.UI.Xaml.Control._installed=false;return false};Sys.Preview.UI.Xaml.Control._replacePlugin=function(d,a){var b=d.get_element(),c=Sys.UI.DomElement._getCurrentStyle(b);a.style.width=c.width;a.style.height=c.height;a.style.display="";var e=b.parentNode;e.insertBefore(a,b);e.removeChild(b);d._element=a};Sys.Preview.UI.Xaml.Control._followFWLink=function(a){window.top.location=Sys.Preview.UI.Xaml.Control._baseFWLink+a};Sys.Preview.UI.Xaml.Control._showInstallPrompt=function(c){var b=document.createElement("div"),a=Sys.Preview.UI.Xaml.Control._getFWLinks(c.get_minimumSilverlightVersion());b.innerHTML=String.format(a.installHtml,a.install,a.image1,a.eula,a.privacy,a.image2);var d=c.get_element();b.id=d.id;this._replacePlugin(c,b)};Type.registerNamespace('Sys.Preview.UI.Xaml');Sys.Preview.UI.Xaml.Res={"inlineInstallHtml":"\u003ctable border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"205px\"\u003e\u003ctr\u003e\u003ctd\u003e\u003cimg title=\"Get Microsoft Silverlight\" onclick=\"javascript:window.top.location='http://www.nba.com/silverlight_upload/index.html';\" style=\"border:0; cursor:pointer; display:block\" src=\"{1}\"/\u003e\u003c/td\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd style=\"background:#C7C7BD; text-align: center; color: black; font-family: Verdana; font-size: 9px; padding-bottom: 0.05cm; padding-top: 0.05cm\" \u003eBy clicking \u003cb\u003eGet Microsoft Silverlight\u003c/b\u003e you accept the \u003ca title=\"Silverlight License Agreement\" href=\"{2}\" target=\"_top\" style=\"text-decoration: underline; color: #36A6C6\"\u003e\u003cb\u003eSilverlight license agreement\u003c/b\u003e\u003c/a\u003e.\u003c/td\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd style=\"border-left-style: solid; border-right-style: solid; border-width: 2px; border-color:#c7c7bd; background: #817d77; color: #FFFFFF; text-align: center; font-family: Verdana; font-size: 9px\"\u003eSilverlight updates automatically, \u003ca title=\"Silverlight Privacy Statement\" href=\"{3}\" target=\"_top\" style=\"text-decoration: underline; color: #36A6C6\"\u003e\u003cb\u003elearn more\u003c/b\u003e\u003c/a\u003e.\u003c/td\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd\u003e\u003cimg src=\"{4}\" alt=\"\" style=\"display:block\"/\u003e\u003c/td\u003e\u003c/tr\u003e\u003c/table\u003e","linkedInstallHtml":"\u003cdiv style=\"width: 205px; height: 67px; background-color: #FFFFFF\"\u003e\u003cimg onclick=\"javascript:Sys.Preview.UI.Xaml.Control._followFWLink({0});\" style=\"border:0; cursor:pointer;display:block\" src=\"{1}\" alt=\"Get Microsoft Silverlight\"/\u003e\u003c/div\u003e"};if(typeof(Sys)!=='undefined')Sys.Application.notifyScriptLoaded();
// media.js:
Type.registerNamespace("Sys.Preview.UI.Xaml.Media");Sys.Preview.UI.Xaml.Media.PlayerElementName={videoWindow:"VideoWindow",placeholderImage:"PlaceholderImage",playerControls:"PlayerControls",playButton:"PlayButton",playPauseButton:"PlayPauseButton",playSymbol:"PlaySymbol",pauseSymbol:"PauseSymbol",stopButton:"StopButton",pauseButton:"PauseButton",nextButton:"NextButton",previousButton:"PreviousButton",muteButton:"MuteButton",muteOnSymbol:"MuteOnSymbol",muteOffSymbol:"MuteOffSymbol",timeSlider:"TimeSlider",timeThumb:"TimeThumb",timeCompleted:"TimeCompleted",volumeSlider:"VolumeSlider",volumeThumb:"VolumeThumb",volumeUpButton:"VolumeUpButton",volumeDownButton:"VolumeDownButton",totalTimeText:"TotalTimeText",currentTimeText:"CurrentTimeText",downloadSlider:"DownloadProgressSlider",downloadText:"DownloadProgressText",bufferingArea:"BufferingArea",bufferingText:"BufferingText",fullScreenButton:"FullScreenButton",chapterArea:"ChapterArea",chapterToggleButton:"ChapterToggleButton",chapterScroll:"ChapterScroll",chapterPrev:"ChapterScrollPrevious",chapterNext:"ChapterScrollNext",chapterItem:"ChapterScrollItem",captionText:"CaptionText",captionArea:"CaptionArea",captionToggleButton:"CaptionToggleButton",captionOnSymbol:"CaptionOnSymbol",captionOffSymbol:"CaptionOffSymbol",fullScreenArea:"FullScreenArea",fullScreenCaptionText:"FullScreenCaptionText",fullScreenCaptionArea:"FullScreenCaptionArea"};Sys.Preview.UI.Xaml.Media._DomElement=function(b,a){this._control=b.content.findName(a);if(this._control){this.bindEvent("mouseEnter",a+"_MouseEnter");this.bindEvent("mouseLeave",a+"_MouseLeave");this._showAnimation=this._control.findName(a+"_Show");this._hideAnimation=this._control.findName(a+"_Hide");this._enableAnimation=this._control.findName(a+"_Enable");this._disableAnimation=this._control.findName(a+"_Disable")}};Sys.Preview.UI.Xaml.Media._DomElement.prototype={_control:null,_boundEvents:null,_showAnimation:null,_hideAnimation:null,_enableAnimation:null,_disableAnimation:null,_enabled:true,get_control:function(){return this._control},get_enabled:function(){return this._enabled},set_enabled:function(a){if(a!==this.get_enabled()){var b=a?this._enableAnimation:this._disableAnimation;if(b)b.begin();this._enabled=a}},bindEvent:function(d,c,a,e){if(c||a){var b=null;if(c)b=this._control.findName(c);if(!b&&!a)return;if(!this._boundEvents)this._boundEvents=[];if(a)a=Function.createDelegate(e||this,a);var g=this;function f(c,d){if(!g.get_enabled())return;if(a&&!a(c,d))return;if(b)b.begin()}var h=this._control.addEventListener(d,f);this._boundEvents[this._boundEvents.length]={eventName:d,token:h}}},dispose:function(){if(this._control){if(this._boundEvents){for(var a=0,c=this._boundEvents.length;a<c;a++){var b=this._boundEvents[a];this._control.removeEventListener(b.eventName,b.token)}this._boundEvents=null}this._showAnimation=null;this._hideAnimation=null;this._enableAnimation=null;this._disableAnimation=null;this._control=null}},setVisible:function(a){var b=a?this._showAnimation:this._hideAnimation;if(b)b.begin();else if(this._control)this._control.visibility=a?0:1}};Sys.Preview.UI.Xaml.Media._DomElement.registerClass("Sys.Preview.UI.Xaml.Media._DomElement",null,Sys.IDisposable);Sys.Preview.UI.Xaml.Media._Button=function(h,a,e,g,c,b,f){Sys.Preview.UI.Xaml.Media._Button.initializeBase(this,[h,a]);this._repeatInterval=e||0;var d=this.get_control();if(d){d.cursor="Hand";this.bindEvent("mouseLeftButtonDown",a+"_MouseDown",this._mouseDown);this.bindEvent("mouseLeftButtonUp",a+"_MouseUp",this._mouseUp);this.bindEvent("mouseLeave",a+"_MouseUp",this._mouseLeave)}if(b){this._requiresSender=!!f;this._clickDelegate=Function.createDelegate(b,g);if(c)this._doubleClickDelegate=Function.createDelegate(b,c)}};Sys.Preview.UI.Xaml.Media._Button.prototype={_down:false,_repeatInterval:0,_repeatTimeout:null,_repeatClickDelegate:null,_timeLastLeftButtonUp:0,_clickDelegate:null,_doubleClickDelegate:null,set_enabled:function(a){Sys.Preview.UI.Xaml.Media._Button.callBaseMethod(this,"set_enabled",[a]);var b=this.get_control();if(b)b.cursor=a?"Hand":"Default"},dispose:function(){this._cancelRepeat();this._clickDelegate=null;this._doubleClickDelegate=null;Sys.Preview.UI.Xaml.Media._Button.callBaseMethod(this,"dispose")},_cancelRepeat:function(){if(!this._repeatTimeout)return;window.clearTimeout(this._repeatTimeout);this._repeatTimeout=null;this._repeatClickDelegate=null},_doClick:function(a){if(a&&this._doubleClickDelegate)this._requiresSender?this._doubleClickDelegate(this):this._doubleClickDelegate();else if(this._clickDelegate)this._requiresSender?this._clickDelegate(this):this._clickDelegate()},_mouseDown:function(){this._down=true;if(this._repeatInterval&&!this._repeatTimeout){this._doClick(false);this._repeatClickDelegate=Function.createDelegate(this,this._repeatClick);this._repeatTimeout=window.setTimeout(this._repeatClickDelegate,this._repeatInterval)}return true},_mouseLeave:function(){if(!this._down)return false;this._down=false;this._cancelRepeat();return true},_mouseUp:function(){this._down=false;if(this._repeatTimeout)this._cancelRepeat();else{var b=(new Date).getTime(),c=this._timeLastLeftButtonUp;this._timeLastLeftButtonUp=b;var a=c&&b-c<300;if(a)this._timeLastLeftButtonUp=0;this._doClick(a)}return true},_repeatClick:function(){this._repeatTimeout=window.setTimeout(this._repeatClickDelegate,this._repeatInterval);this._doClick(false)}};Sys.Preview.UI.Xaml.Media._Button.registerClass("Sys.Preview.UI.Xaml.Media._Button",Sys.Preview.UI.Xaml.Media._DomElement);Sys.Preview.UI.Xaml.Media.Player=function(a){Sys.Preview.UI.Xaml.Media.Player.initializeBase(this,[a]);this.set_scaleMode(Sys.Preview.UI.Xaml.ScaleMode.zoom)};Sys.Preview.UI.Xaml.Media.Player.prototype={_mediaEnded:false,_naturalduration:null,_domElements:null,_timerCookie:null,_mediaOpened:true,_enabledCaptionToggleButton:false,_autoPlay:null,_canSeek:true,_hasDuration:true,_caption:null,_chapters:null,_currentChapter:-1,_lastChapterStarted:-1,_nextChapterTime:-1,_currentChapterTime:-1,_enableCaptions:true,_toggledCaptions:true,_mediaMarkers:null,_mediaUrl:null,_muted:null,_placeholderImage:null,_imageElement:null,_volume:null,_chaptersActive:false,_bufferingProgressVisible:false,_bufferingProgress:null,_bufferingStoryboard:null,_bufferingText:null,_captionButton:null,_captionArea:null,_captionAreaFS:null,_chapterArea:null,_currentTimeText:null,_downloadProgress:null,_dragTime:null,_dragVolume:null,_mediaElement:null,_muteButton:null,_nextButton:null,_playPauseButton:null,_playButton:null,_pauseButton:null,_stopButton:null,_previousButton:null,_totalTimeText:null,add_chapterStarted:function(a){this.get_events().addHandler("chapterStarted",a)},remove_chapterStarted:function(a){this.get_events().removeHandler("chapterStarted",a)},add_markerReached:function(a){this.get_events().addHandler("markerReached",a)},remove_markerReached:function(a){this.get_events().removeHandler("markerReached",a)},add_mediaEnded:function(a){this.get_events().addHandler("mediaEnded",a)},remove_mediaEnded:function(a){this.get_events().removeHandler("mediaEnded",a)},add_mediaFailed:function(a){this.get_events().addHandler("mediaFailed",a)},remove_mediaFailed:function(a){this.get_events().removeHandler("mediaFailed",a)},add_mediaOpened:function(a){this.get_events().addHandler("mediaOpened",a)},remove_mediaOpened:function(a){this.get_events().removeHandler("mediaOpened",a)},add_stateChanged:function(a){this.get_events().addHandler("stateChanged",a)},remove_stateChanged:function(a){this.get_events().removeHandler("stateChanged",a)},add_volumeChanged:function(a){this.get_events().addHandler("volumeChanged",a)},remove_volumeChanged:function(a){this.get_events().removeHandler("volumeChanged",a)},get_autoPlay:function(){if(this._mediaElement)return this._mediaElement.AutoPlay;if(this._autoPlay!==null)return this._autoPlay;return false},set_autoPlay:function(a){if(this._mediaElement)this._mediaElement.AutoPlay=a;else this._autoPlay=a},get_caption:function(){return this._caption||""},set_caption:function(a){this._caption=a;if(this._captionArea)this._captionArea.set_text(a);if(this._captionAreaFS)this._captionAreaFS.set_text(a)},get_chapters:function(){if(!this._chapters)return [];return Array.clone(this._chapters)},set_chapters:function(a){this._chapters=a;if(this._chapterArea)this._loadChapters(a)},get_currentChapter:function(){return this._currentChapter},set_currentChapter:function(a){var b=this.get_chapters();if(!b||a<0||a>=b.length)throw Error.argumentOutOfRange("currentChapter",a,Sys.Preview.UI.Xaml.Media.Res.invalidChapterIndex);var c=b[a].time;if(c!==-1)this.set_timeIndex(c)},get_enableCaptions:function(){return !!this._enableCaptions},set_enableCaptions:function(a){if(this._enableCaptions!==a){this._enableCaptions=a;this._ensureCaption()}},get_mediaMarkers:function(){if(!this._mediaMarkers)return [];return Array.clone(this._mediaMarkers)},get_mediaElement:function(){return this._mediaElement||null},get_mediaUrl:function(){if(this._mediaElement)return this._mediaElement.Source||"";return this._mediaUrl||""},set_mediaUrl:function(a){if(this._mediaElement){this._loadPlaceholderImage();this._loadMediaUrl(a)}else this._mediaUrl=a},get_muted:function(){if(this._mediaElement)return this._mediaElement.IsMuted;return !!this._muted},set_muted:function(a){if(a!==this.get_muted()){if(this._mediaElement){this._mediaElement.IsMuted=a;this._muteButton.set_state(a?1:0)}else this._muted=a;if(!this.get_isUpdating())this._raiseVolumeChanged(Sys.EventArgs.Empty)}},get_placeholderImage:function(){return this._placeholderImage||""},set_placeholderImage:function(a){this._placeholderImage=a},get_playState:function(){return this._mediaElement?this._mediaElement.CurrentState:"Stopped"},get_timeIndex:function(){return this._mediaElement?this._mediaElement.position.seconds:0},set_timeIndex:function(a){if(this._mediaElement&&this._canSeek){this.set_caption("");a=Math.max(0,a);a=Math.min(this._naturalduration,a);var b=this._mediaElement.position;b.seconds=a;this._mediaElement.position=b;this._updateTime(a);this._currentChapter=this._getChapterAt(a,true);this._detectChapterChanged()}},get_volume:function(){if(this._volume!==null)return this._volume;if(this._mediaElement)return this._mediaElement.volume;return Sys.Preview.UI.Xaml.Media.Player._defaultVolume},set_volume:function(a){if(a!==this.get_volume()){if(this._mediaElement&&this._mediaElement.CurrentState!=="Closed")this._mediaElement.volume=a;else this._volume=a;if(!this.get_isUpdating())this._raiseVolumeChanged(Sys.EventArgs.Empty)}if(this._dragVolume)this._dragVolume.set_value(a)},nextChapter:function(){if(!this._canSeek)return false;var a=this.get_chapters();if(a){var b=this.get_currentChapter();if(++b<a.length){this.set_currentChapter(b);return true}}return false},onChapterStarted:function(){},onMarkerReached:function(){},onPlayStateChanged:function(){},onVolumeChanged:function(){},pause:function(){if(!this._mediaElement)throw Error.invalidOperation(Sys.Preview.UI.Xaml.Media.Res.noMediaElement);if(!this._mediaOpened)return;this._mediaElement.pause()},play:function(){if(!this._mediaElement)throw Error.invalidOperation(Sys.Preview.UI.Xaml.Media.Res.noMediaElement);if(!this._mediaOpened)return;this.set_caption("");var a=this._mediaElement;if(this._mediaEnded){a.stop();this._mediaEnded=false;window.setTimeout(function(){a.play()},0)}else a.play()},previousChapter:function(){if(!this._canSeek)return false;var b=this.get_chapters();if(b){var a=this.get_currentChapter();if(--a>=0){this.set_currentChapter(a);return true}}return false},stop:function(){if(!this._mediaElement)throw Error.invalidOperation(Sys.Preview.UI.Xaml.Media.Res.noMediaElement);if(!this._mediaOpened)return;this._mediaEnded=false;this._currentChapter=this._getChapterAt(0,true);this._mediaElement.stop();this.set_caption("")},toggleMuted:function(){var a=!this.get_muted();this.set_muted(a);return a},togglePlayPause:function(){this.get_playState()==="Playing"?this.pause():this.play();return this.get_playState()},xamlDispose:function(){if(this._timerCookie){window.clearTimeout(this._timerCookie);this._timerCookie=null}if(this._domElements){for(var a=0,c=this._domElements.length;a<c;a++)this._domElements[a].dispose();delete this._domElements}if(this._mediaElement)this._mediaElement.stop();this._mediaElement=null;this._bufferingText=null;this._bufferingStoryboard=null;var b=this.get_element()?this.get_element().content:null;if(b)b.onFullScreenChange=null;Sys.Preview.UI.Xaml.Media.Player.callBaseMethod(this,"xamlDispose")},xamlInitialize:function(){this._bindChildControls();Sys.Preview.UI.Xaml.Media.Player.callBaseMethod(this,"xamlInitialize");var a=this.get_chapters();if(a)this._loadChapters(a);if(this._mediaUrl===null){this._ensureSeeking(false);this._mediaAvailable(false)}this._loadPlaceholderImage();this._clearMediaCache()},_bindChildControls:function(){var a=Sys.Preview.UI.Xaml.Media.PlayerElementName,b=this.get_element(),c=Sys.Preview.UI.Xaml.Media._Button,f=Sys.Preview.UI.Xaml.Media._DomElement,h=Sys.Preview.UI.Xaml.Media._Slider,g=Sys.Preview.UI.Xaml.Media._MultiStateButton,e=Sys.Preview.UI.Xaml.Media._TextBlock,d;this._domElements=[d=new c(b,a.videoWindow,null,this.togglePlayPause,this._onFullScreenME,this),this._fsCanvas=new c(b,a.fullScreenArea,null,this.togglePlayPause,this._onFullScreenME,this),this._bufferingProgress=new f(b,a.bufferingArea),new f(b,a.playerControls),this._playButton=new c(b,a.playButton,null,this.play,null,this),this._stopButton=new c(b,a.stopButton,null,this.stop,null,this),this._pauseButton=new c(b,a.pauseButton,null,this.pause,null,this),new c(b,a.volumeUpButton,20,this._onVolumeUp,null,this),new c(b,a.volumeDownButton,20,this._onVolumeDown,null,this),new c(b,a.fullScreenButton,null,this._onFullScreen,null,this),this._previousButton=new c(b,a.previousButton,null,this._chapterPrevious,null,this),this._nextButton=new c(b,a.nextButton,null,this._chapterNext,null,this),this._playPauseButton=new g(b,a.playPauseButton,null,this.togglePlayPause,null,this,a.playSymbol,a.pauseSymbol),this._muteButton=new g(b,a.muteButton,null,this.toggleMuted,null,this,a.muteOffSymbol,a.muteOnSymbol),this._dragTime=new h(b,a.timeThumb,a.timeSlider,this._onTimeSliderChanged,this),this._dragVolume=new h(b,a.volumeThumb,a.volumeSlider,this._onVolumeSliderChanged,this),this._totalTimeText=new e(b,a.totalTimeText),this._currentTimeText=new e(b,a.currentTimeText),this._downloadProgress=new Sys.Preview.UI.Xaml.Media._ProgressBar(b,a.downloadSlider,a.downloadText),this._chapterArea=new Sys.Preview.UI.Xaml.Media._ChapterArea(this),this._captionArea=new e(b,a.captionText,a.captionArea),this._captionAreaFS=new e(b,a.fullScreenCaptionText,a.fullScreenCaptionArea),this._captionButton=new g(b,a.captionToggleButton,null,this._onCaptionToggle,null,this,a.captionOnSymbol,a.captionOffSymbol),this._imageElement=new f(b,a.placeholderImage)];d.bindEvent("mediaOpened",null,this._meMediaOpened,this);d.bindEvent("mediaFailed",null,this._meMediaFailed,this);d.bindEvent("mediaEnded",null,this._meMediaEnded,this);d.bindEvent("downloadProgressChanged",null,this._meDownloadProgress,this);d.bindEvent("bufferingProgressChanged",null,this._meBufferingProgress,this);d.bindEvent("markerReached",null,this._meMarkerReached,this);d.bindEvent("currentStateChanged",null,this._meStateChanged,this);this._bufferingStoryboard=b.content.findName(a.bufferingArea+"_Buffering");this._bufferingText=b.content.findName(a.bufferingText);this._dragVolume.set_value(this.get_volume());b.content.onFullScreenChange=Function.createDelegate(this,this._fullScreenChanged);this._mediaElement=d.get_control();if(!this._mediaElement)throw Error.invalidOperation(Sys.Preview.UI.Xaml.Media.Res.noMediaElement);this._mediaElement.AutoPlay=false},_chapterNext:function(){var a=this.get_chapters();if(!a||!a.length)this._skipTime(1);else this.nextChapter()},_chapterPrevious:function(){var b=this.get_chapters();if(!b||!b.length)this._skipTime(-1);else{var a=this._getChapterAt(this.get_timeIndex()-1);if(a===-1)this.set_timeIndex(0);else this.set_currentChapter(a)}},_clearMediaCache:function(){if(this._muted!==null){this._mediaElement.IsMuted=this._muted;this._muteButton.set_state(this._muted?1:0);this._muted=null}if(this._volume!==null){this._mediaElement.Volume=this._volume;this._dragVolume.set_value(this._volume);this._volume=null}if(this._autoPlay!==null){this._mediaElement.AutoPlay=this._autoPlay;this._autoPlay=null}if(this._mediaUrl!==null){this._loadMediaUrl(this._mediaUrl);this._mediaUrl=null}},_detectChapterChanged:function(a){if(this._lastChapterStarted!==this._currentChapter){this._lastChapterStarted=this._currentChapter;this._raiseChapterStarted(new Sys.Preview.UI.Xaml.Media.ChapterEventArgs(this._currentChapter))}else if(this._nextChapterTime!==-1&&a>=this._nextChapterTime-.001||this._currentChapterTime!==-1&&a<this._currentChapterTime-.001){this._currentChapter=this._getChapterAt(a,true);this._lastChapterStarted=this._currentChapter;this._raiseChapterStarted(new Sys.Preview.UI.Xaml.Media.ChapterEventArgs(this._currentChapter))}},_enableBuffering:function(a,b){if(a){if(this._bufferingText){this._bufferingText.Visibility=0;this._bufferingText.Text=b.toString()}if(!this._bufferingProgressVisible){this._bufferingProgress.setVisible(true);if(this._bufferingStoryboard)this._bufferingStoryboard.begin()}this._bufferingProgressVisible=true}else if(this._bufferingProgressVisible){if(this._bufferingText)this._bufferingText.Visibility=1;this._bufferingProgress.setVisible(false);if(this._bufferingStoryboard)this._bufferingStoryboard.stop();this._bufferingProgressVisible=false}},_ensureCaption:function(){var b=this._toggledCaptions&&this.get_enableCaptions();if(b){var a=this.get_caption();if(this._captionArea)this._captionArea.set_text(a);if(this._captionAreaFS)this._captionAreaFS.set_text(a)}else{if(this._captionArea)this._captionArea.setVisible(false);if(this._captionAreaFS)this._captionAreaFS.setVisible(false)}},_ensureChapterArea:function(){var a=this._canSeek;if(a){var b=this.get_chapters();if(b){a=false;for(var c=0,d=b.length;c<d;c++)if(b[c].imageUrl){a=true;break}}}if(a&&!this._chaptersActive){this._chapterArea.activate();this._chaptersActive=true}else if(!a&&this._chaptersActive){this._chapterArea.deactivate();this._chapterArea.setVisible(false);this._chaptersActive=false}},_ensureSeeking:function(a){if(this._canSeek!==a){this._canSeek=a;this._previousButton.set_enabled(a);this._nextButton.set_enabled(a);this._ensureChapterArea();this._dragTime.set_enableSeeking(a)}},_ensureDuration:function(a){if(this._hasDuration!==a){this._hasDuration=a;this._totalTimeText.setVisible(a);this._currentTimeText.setVisible(a);this._dragTime.set_enabled(a)}},_formatTime:function(e){var b=Math.floor(e/(1000*60*60)),c=Math.floor(e/(1000*60))-b*60,d=Math.floor(e/1000)-b*60*60-c*60,a="";if(b>0){a=b<10?"0"+b:""+b;a+=":"}a+=c<10?"0"+c:""+c;a+=":";a+=d<10?"0"+d:""+d;return a},_fullScreenChanged:function(){var a=this._fsCanvas.get_control();if(!a)return;if(this.get_element().content.fullScreen){var b=this.get_element().content.root.RenderTransform,c=1,d=1;if(b&&b.toString()==="ScaleTransform"){c=b.ScaleX;d=b.ScaleY}var e=Sys.Preview.UI.Xaml.Control._computeScale(a);Sys.Preview.UI.Xaml.Control._ensureScale(a,e.horizontal/c,e.vertical/d);a.Visibility=0}else a.Visibility=1},_getChapterAt:function(d,e){var b=this.get_chapters(),a=-1;d+=.001;if(b)for(var c=0,f=b.length;c<f;c++){var g=b[c].time-.001;if(g<=d)a=c;else break}if(e){this._currentChapterTime=a>=0?b[a].time:-1;this._nextChapterTime=a<b.length-1?b[a+1].time:-1}return a},_loadChapters:function(a){this._ensureChapterArea();this._chapterArea.setChapters(a);this._currentChapter=this._getChapterAt(this.get_timeIndex(),true);this._lastChapterStarted=-1;this._detectChapterChanged()},_loadMediaUrl:function(a){this._currentChapter=-1;this._lastChapterStarted=-1;this._mediaElement.Source=a},_loadPlaceholderImage:function(){var b=this.get_placeholderImage();if(b){var a=this._imageElement.get_control();if(a){a.Source=b;this._placeholderImageShowing=true;this._imageElement.setVisible(true)}}},_onCaptionToggle:function(){this._toggledCaptions=!this._toggledCaptions;this._ensureCaption();this._captionButton.set_state(this._toggledCaptions?0:1)},_onFullScreen:function(){var a=this.get_element().content;a.fullScreen=!a.fullScreen},_onFullScreenME:function(){this.togglePlayPause();this._onFullScreen()},_onTimeSliderChanged:function(){this.set_timeIndex(this._dragTime.get_value()*this._naturalduration)},_onVolumeDown:function(){this.set_volume(Math.max(0,this.get_volume()-.02))},_onVolumeSliderChanged:function(){this.set_volume(this._dragVolume.get_value())},_onVolumeUp:function(){this.set_volume(Math.min(1,this.get_volume()+.02))},_mediaAvailable:function(a){if(this._mediaOpened!==a){this._mediaOpened=a;this._playPauseButton.set_enabled(a);this._playButton.set_enabled(a);this._pauseButton.set_enabled(a);this._stopButton.set_enabled(a);if(!a)this.set_caption("")}},_meBufferingProgress:function(){var b=this._mediaElement.bufferingProgress,a=Math.round(b*100);if(a>=100)this._enableBuffering(false);else this._enableBuffering(true,a)},_meDownloadProgress:function(){this._enableBuffering(false);this._downloadProgress.set_value(this._mediaElement.downloadProgress)},_meMarkerReached:function(b,a){this._raiseMarkerReached(new Sys.Preview.UI.Xaml.Media.MarkerEventArgs(a.marker))},_meMediaEnded:function(){this._mediaEnded=true;this._raiseEvent("mediaEnded",Sys.EventArgs.Empty)},_meMediaFailed:function(){this._naturalduration=null;this._enableBuffering(false);this._mediaAvailable(false);this._ensureDuration(false);this._ensureSeeking(false);this._mediaEnded=false;this.set_caption("");this._raiseEvent("mediaFailed",Sys.EventArgs.Empty)},_meMediaOpened:function(){this._mediaEnded=false;this._clearMediaCache();if(this._placeholderImageShowing){this._imageElement.setVisible(false);this._placeholderImageShowing=false}this.set_caption("");this._markers=[];var d=this._mediaElement.Markers;for(var b=0,e=d.Count;b<e;b++)Array.add(this._markers,d.getItem(b));this._naturalduration=this._mediaElement.naturalduration.seconds;var a=!!this._naturalduration,c=a&&this._mediaElement.CanSeek;if(c){this._currentChapter=this._getChapterAt(0,true);this._lastChapterStarted=-1;this._detectChapterChanged()}if(a){this._totalTimeText.set_text(this._formatTime(this._naturalduration*1000));this._currentTimeText.set_text(this._formatTime(this.get_timeIndex()*1000))}this._mediaAvailable(true);this._ensureDuration(a);this._ensureSeeking(c);if(!this._timerCookie){this._tickTimerDelegate=Function.createDelegate(this,this._tickTimer);this._timerCookie=window.setTimeout(this._tickTimerDelegate,100)}this._raiseEvent("mediaOpened",Sys.EventArgs.Empty)},_meStateChanged:function(){var a=this.get_playState();if(a==="Closed"){this._enableBuffering(false);this._mediaAvailable(false);this._ensureSeeking(false);this._mediaEnded=false}else if(a==="Playing"||a==="Paused")this._enableBuffering(false);var b=this._oldState||"";if(a!==b){this._oldState=a;this._raisePlayStateChanged(new Sys.Preview.UI.Xaml.Media.StateChangedEventArgs("playState",b,a))}},_raiseChapterStarted:function(a){this.onChapterStarted(a);this._raiseEvent("chapterStarted",a);this.raisePropertyChanged("currentChapter")},_raiseEvent:function(c,b){var a=this.get_events().getHandler(c);if(a)a(this,b)},_raiseMarkerReached:function(b){if(this._toggledCaptions&&this.get_enableCaptions()){var a=b.get_marker(),d=a.type?a.type.toLowerCase():"";if(d==="caption"){if(!this._enabledCaptionToggleButton){this._enabledCaptionToggleButton=true;this._captionButton.setVisible(true)}var c=a.text?a.text:"";if(c.trim().length===0)c="";this.set_caption(c);this.raisePropertyChanged("caption")}}this.onMarkerReached(b);this._raiseEvent("markerReached",b)},_raisePlayStateChanged:function(a){this._playPauseButton.set_state(a.get_currentState()==="Playing"?1:0);this.onPlayStateChanged(a);this._raiseEvent("stateChanged",a);this._raiseEvent("propertyChanged",a)},_raiseVolumeChanged:function(a){this.onVolumeChanged(a);this._raiseEvent("volumeChanged",a);this.raisePropertyChanged("volume")},_skipTime:function(b){var a=this._naturalduration/10;a=b*Math.max(5,a);var c=a+this.get_timeIndex();this.set_timeIndex(c)},_tickTimer:function(){this._timerCookie=window.setTimeout(this._tickTimerDelegate,100);var a=this.get_timeIndex();if(this._hasDuration){if(!this._dragTime._isDragging)this._dragTime.set_value(a/this._naturalduration);this._updateTime(a)}if(this._canSeek)this._detectChapterChanged(a)},_updateTime:function(a){this._currentTimeText.set_text(this._formatTime(a*1000))}};Sys.Preview.UI.Xaml.Media.Player._defaultVolume=.5;Sys.Preview.UI.Xaml.Media.Player.registerClass("Sys.Preview.UI.Xaml.Media.Player",Sys.Preview.UI.Xaml.Control);Sys.Preview.UI.Xaml.Media.StateChangedEventArgs=function(c,a,b){this._currentState=b;this._previousState=a;Sys.Preview.UI.Xaml.Media.StateChangedEventArgs.initializeBase(this,[c])};Sys.Preview.UI.Xaml.Media.StateChangedEventArgs.prototype={get_currentState:function(){return this._currentState||null},get_previousState:function(){return this._previousState||null}};Sys.Preview.UI.Xaml.Media.StateChangedEventArgs.registerClass("Sys.Preview.UI.Xaml.Media.StateChangedEventArgs",Sys.PropertyChangedEventArgs);Sys.Preview.UI.Xaml.Media.ChapterEventArgs=function(a){this._chapterIndex=a;Sys.Preview.UI.Xaml.Media.ChapterEventArgs.initializeBase(this)};Sys.Preview.UI.Xaml.Media.ChapterEventArgs.prototype={get_chapterIndex:function(){return this._chapterIndex}};Sys.Preview.UI.Xaml.Media.ChapterEventArgs.registerClass("Sys.Preview.UI.Xaml.Media.ChapterEventArgs",Sys.EventArgs);Sys.Preview.UI.Xaml.Media.MarkerEventArgs=function(a){this._marker=a;Sys.Preview.UI.Xaml.Media.MarkerEventArgs.initializeBase(this)};Sys.Preview.UI.Xaml.Media.MarkerEventArgs.prototype={get_marker:function(){return this._marker||null}};Sys.Preview.UI.Xaml.Media.MarkerEventArgs.registerClass("Sys.Preview.UI.Xaml.Media.MarkerEventArgs",Sys.EventArgs);Sys.Preview.UI.Xaml.Media._TextBlock=function(e,d,b){Sys.Preview.UI.Xaml.Media._TextBlock.initializeBase(this,[e,d]);var c=this.get_control();if(c&&b){var a=c.findName(b);if(a){this._centerX=a["Canvas.Left"]+a.width/2;this._bottomY=a["Canvas.Top"]+a.height;this._background=a}}};Sys.Preview.UI.Xaml.Media._TextBlock.prototype={_centerX:0,_bottomY:0,_background:null,get_backgroundControl:function(){return this._background||null},get_text:function(){var a=this.get_control();return a?a.Text||"":""},set_text:function(c){var b=this.get_control();if(b){b.Text=c||"";this.setVisible(!!c);var a=this.get_backgroundControl();if(a){var d=b.ActualWidth,e=b.ActualHeight;a["Canvas.Left"]=this._centerX-d/2;a["Canvas.Top"]=this._bottomY-e;a.width=d;a.height=e}}},dispose:function(){Sys.Preview.UI.Xaml.Media._TextBlock.callBaseMethod(this,"dispose");this._background=null},setVisible:function(a){Sys.Preview.UI.Xaml.Media._TextBlock.callBaseMethod(this,"setVisible",[a]);var b=this.get_backgroundControl();if(b)b.visibility=a?0:1}};Sys.Preview.UI.Xaml.Media._TextBlock.registerClass("Sys.Preview.UI.Xaml.Media._TextBlock",Sys.Preview.UI.Xaml.Media._DomElement);Sys.Preview.UI.Xaml.Media._MultiStateButton=function(k,j,f,h,g,i){Sys.Preview.UI.Xaml.Media._MultiStateButton.initializeBase(this,[k,j,f,h,g,i]);var c=arguments.length-6;this._animationsOn=new Array(c);this._animationsOff=new Array(c);this._controls=new Array(c);var e=this.get_control();for(var a=0;a<c;a++){var d=arguments[a+6],b=e?e.findName(d):null;this._controls[a]=b||null;this._animationsOn[a]=b?b.findName(d+"_Show"):null;this._animationsOff[a]=b?b.findName(d+"_Hide"):null}};Sys.Preview.UI.Xaml.Media._MultiStateButton.prototype={_state:0,_animationsOn:null,_animationsOff:null,_controls:null,get_state:function(){return this._state},set_state:function(b){if(b!==this._state){var a=this._animationsOff[this._state];if(a)a.begin();else{var c=this._controls[this._state];if(c)c.visibility=1}this._state=b;a=this._animationsOn[this._state];if(a)a.begin();else{var d=this._controls[this._state];if(d)d.visibility=0}}},dispose:function(){Sys.Preview.UI.Xaml.Media._MultiStateButton.callBaseMethod(this,"dispose");this._animationsOn=null;this._animationsOff=null;this._controls=null;this._state=0}};Sys.Preview.UI.Xaml.Media._MultiStateButton.registerClass("Sys.Preview.UI.Xaml.Media._MultiStateButton",Sys.Preview.UI.Xaml.Media._Button);Sys.Preview.UI.Xaml.Media._ImageList=function(d,a){Sys.Preview.UI.Xaml.Media._ImageList.initializeBase(this,[d,a]);var c=this.get_control();if(!c)return;c.cursor="Arrow";this._scrollAnimationSB=c.findName(a+"_ScrollAnimationStoryboard");if(this._scrollAnimationSB)this._scrollAnimation=c.findName(a+"_ScrollAnimation");var b=this._scrollAnimation?this._scrollAnimation.duration.seconds*1000:200;b=Math.max(b,200);this._scrollNext=new Sys.Preview.UI.Xaml.Media._Button(d,a+"_ScrollNext",b,this._scrollNextClick,null,this);this._scrollPrev=new Sys.Preview.UI.Xaml.Media._Button(d,a+"_ScrollPrevious",b,this._scrollPrevClick,null,this);this._findItems(a);this._virtualItems=[]};Sys.Preview.UI.Xaml.Media._ImageList.prototype={_items:null,_virtualItems:null,_scrollNext:null,_scrollPrev:null,_scrollAnimation:null,_scrollAnimationSB:null,_itemSize:0,_itemSpacing:0,_overflowIndex:0,get_items:function(){return this._virtualItems},set_items:function(a){this._virtualItems=Array.clone(a);this._reset();this._assignImages()},onItemClick:function(){},_assignImages:function(){for(var b=0,d=this._items.length;b<d;b++){var a=this._items[b],c=this._itemOffset+b;if(c<this._virtualItems.length){a.image.Source=this._virtualItems[c];a.button.get_control().visibility=0;a.button._virtualIndex=c}else a.button.get_control().visibility=1}},_findItems:function(b){var a=this.get_control(),d=1;this._items=[];var c=b+"_ScrollItem1",e=b+"_ScrollItem1_Image",h=a.findName(c),g=a.findName(e);while(h){var i=new Sys.Preview.UI.Xaml.Media._Button(a.getHost(),c,null,this._itemClick,null,this,true);i._physicalIndex=d-1;this._items[this._items.length]={button:i,image:g};d++;c=b+"_ScrollItem"+d;e=b+"_ScrollItem"+d+"_Image";h=a.findName(c);g=a.findName(e)}if(this._items.length===0)throw Error.invalidOperation("ImageList needs at least one scroll item.");var f=this._items[0].button.get_control();this._itemSize=f.width;this._itemSpacing=f["Canvas.Left"]*2},_handleOverflow:function(c){var d=c===1?this._items.length-1:-1,b=this._itemOffset+d,a=this._items[this._overflowIndex];a.image.Source=this._virtualItems[b];a.button._virtualIndex=b;var e=a.button.get_control();e["Canvas.Left"]=b*(this._itemSize+this._itemSpacing)+this._itemSpacing/2;this._overflowIndex+=c;if(this._overflowIndex<0)this._overflowIndex=this._items.length-1;else if(this._overflowIndex>=this._items.length)this._overflowIndex=0},_itemClick:function(a){this.onItemClick(a._virtualIndex)},_reset:function(){this._itemOffset=0;for(var a=0,c=this._items.length;a<c;a++){var b=this._items[a].button;b._virtualIndex=a;b.get_control()["Canvas.Left"]=a*(this._itemSize+this._itemSpacing)+this._itemSpacing/2}this._overflowIndex=this._items.length-1;if(this._scrollAnimation){this._scrollAnimation.To="0";this._scrollAnimationSB.begin()}},_scroll:function(a){if(this._scrollAnimation){this._handleOverflow(a);var b=this._itemOffset;this._itemOffset+=a;this._scrollAnimation.From="-"+b*(this._itemSize+this._itemSpacing);this._scrollAnimation.To="-"+this._itemOffset*(this._itemSize+this._itemSpacing);this._scrollAnimationSB.begin()}else{this._itemOffset+=a;this._assignImages()}},_scrollNextClick:function(){if(this._itemOffset<this._virtualItems.length-this._items.length+1)this._scroll(1)},_scrollPrevClick:function(){if(this._itemOffset>0)this._scroll(-1)},dispose:function(){if(this._scrollNext)this._scrollNext.dispose();if(this._scrollPrev)this._scrollPrev.dispose();this._scrollNext=null;this._scrollPrev=null;if(this._items){for(var a=0,c=this._items.length;a<c;a++){var b=this._items[a].button;b.dispose()}this._items=null}this._virtualItems=null;this._itemSize=null;this._itemSpacing=null;this._scrollAnimation=null;this._scrollAnimationSB=null;Sys.Preview.UI.Xaml.Media._ImageList.callBaseMethod(this,"dispose")}};Sys.Preview.UI.Xaml.Media._ImageList.registerClass("Sys.Preview.UI.Xaml.Media._ImageList",Sys.Preview.UI.Xaml.Media._DomElement);Sys.Preview.UI.Xaml.Media._ChapterArea=function(a){this._player=a;var b=Sys.Preview.UI.Xaml.Media.PlayerElementName;Sys.Preview.UI.Xaml.Media._ChapterArea.initializeBase(this,[a.get_element(),b.chapterArea]);var c=this.get_control();if(c)this._toggleButton=new Sys.Preview.UI.Xaml.Media._Button(a.get_element(),b.chapterToggleButton,null,this._onToggle,null,this)};Sys.Preview.UI.Xaml.Media._ChapterArea.prototype={_player:null,_visible:false,_toggleButton:null,activate:function(){var a=this.get_control();if(!a)return;a.visibility=0;this._toggleButton.setVisible(true)},deactivate:function(){var a=this.get_control();if(!a)return;a.visibility=1;this._toggleButton.setVisible(false)},dispose:function(){Sys.Preview.UI.Xaml.Media._ChapterArea.callBaseMethod(this,"dispose");this._player=null;if(this._toggleButton)this._toggleButton.dispose();this._toggleButton=null},onItemClick:function(a){this._player.set_currentChapter(this._imageChapters[a])},setChapters:function(c){if(!this.get_control())return;var b=[];if(c){this._imageChapters=[];for(var a=0,e=c.length;a<e;a++){var d=c[a];if(d.imageUrl){this._imageChapters[this._imageChapters.length]=a;b[b.length]=d.imageUrl}}}this.set_items(b)},_onToggle:function(){this._visible=!this._visible;this.setVisible(this._visible);var a=this.get_control();if(a)a.IsHitTestVisible=this._visible}};Sys.Preview.UI.Xaml.Media._ChapterArea.registerClass("Sys.Preview.UI.Xaml.Media._ChapterArea",Sys.Preview.UI.Xaml.Media._ImageList);Sys.Preview.UI.Xaml.Media._Slider=function(a,e,c,d,b){Sys.Preview.UI.Xaml.Media._Slider.initializeBase(this,[a,c]);this._slider=this.get_control();this._thumb=new Sys.Preview.UI.Xaml.Media._DomElement(a,e);this._thumbControl=this._thumb.get_control();if(!this._thumbControl||!this._slider)return;this._highlight=new Sys.Preview.UI.Xaml.Media._DomElement(a,c+"_Highlight");this._highlightControl=this._highlight.get_control();this._slider.cursor="Hand";this._thumbControl.cursor="Hand";this._thumb.bindEvent("mouseLeftButtonDown",null,this._thumbMouseLeftButtonDown,this);this._thumb.bindEvent("mouseLeftButtonUp",null,this._thumbMouseLeftButtonUp,this);this._thumb.bindEvent("mouseMove",null,this._thumbMouseMove,this);this.bindEvent("mouseLeftButtonDown",null,this._sliderLeftButtonDown,this);this._rootToken=this._slider.getHost().content.root.addEventListener("mouseLeave",Function.createDelegate(this,this._cancelDragging));this._isHorizontal=this._slider.width>=this._slider.height;if(this._highlightControl)this._highlightControl[this._isHorizontal?"width":"height"]=0;if(b)this._changedHandler=Function.createDelegate(b,d)};Sys.Preview.UI.Xaml.Media._Slider.prototype={_slider:null,_thumb:null,_thumbControl:null,_enableSeeking:true,_highlight:null,_highlightControl:null,_isDragging:false,_isHorizontal:true,_rootToken:null,set_enabled:function(a){if(this.get_enabled()!==a){Sys.Preview.UI.Xaml.Media._Slider.callBaseMethod(this,"set_enabled",[a]);this._highlight.set_enabled(a);this._thumb.setVisible(a);if(this._thumbControl)this._thumbControl.cursor=a?"Hand":"Default";if(!a)this.set_value(0);if(this._slider)this._slider.cursor=a?"Hand":"Default"}},get_enableSeeking:function(){return !!this._enableSeeking},set_enableSeeking:function(a){if(this._enableSeeking!==a){this._enableSeeking=a;if(!a)this._cancelDragging()}},get_value:function(){if(!this._thumbControl||!this._slider)return 0;var a;if(this._isHorizontal){a=this._thumbControl["Canvas.Left"]-this._slider["Canvas.Left"];a=a/(this._slider.width-this._thumbControl.width)}else{a=this._thumbControl["Canvas.Top"]-this._slider["Canvas.Top"]+this._thumbControl.height/2;a=1-a/this._slider.height}a=Math.round(a*1000)/1000;return Math.min(1,Math.max(0,a))},set_value:function(a){a=Math.min(1,Math.max(0,a));this._setThumbPosition(a)},dispose:function(){if(this._highlight)this._highlight.dispose();if(this._thumb)this._thumb.dispose();this._changedHandler=null;if(this._rootToken)this._slider.getHost().content.root.removeEventListener("mouseLeave",this._rootToken);this._slider=null;this._thumb=null;this._thumbControl=null;this._rootToken=null;this._highlight=null;this._highlightControl=null;Sys.Preview.UI.Xaml.Media._Slider.callBaseMethod(this,"dispose")},_cancelDragging:function(){if(this._isDragging){this._isDragging=false;this._thumbControl.ReleaseMouseCapture()}},_setThumbPosition:function(b){if(this._thumbControl&&this._slider){var a=this._toLocation(b);if(this._isHorizontal){this._thumbControl["Canvas.Left"]=this._slider["Canvas.Left"]+a-this._thumbControl.width/2;if(this._highlightControl)this._highlightControl.width=a+this._thumbControl.width/2}else{this._thumbControl["Canvas.Top"]=this._slider["Canvas.Top"]+a-this._thumbControl.height/2;if(this._highlightControl){this._highlightControl["Canvas.Top"]=this._thumbControl["Canvas.Top"]+this._thumbControl.height/2;this._highlightControl.height=b*(this._slider.height-this._thumbControl.height)-this._thumbControl.height/2}}}},_sliderLeftButtonDown:function(c,a){if(!this._enableSeeking)return false;var b=this._toValue(a.getPosition(c));this._setThumbPosition(b);if(this._changedHandler)this._changedHandler();if(this._thumbControl){this._isDragging=true;this._thumbControl.CaptureMouse()}return true},_thumbMouseLeftButtonDown:function(){if(!this._enableSeeking)return false;this._isDragging=true;this._thumbControl.CaptureMouse();return true},_thumbMouseLeftButtonUp:function(){if(!this._enableSeeking)return false;this._isDragging=false;this._thumbControl.ReleaseMouseCapture();return true},_thumbMouseMove:function(b,a){if(this._isDragging){this._setThumbPosition(this._toValue(a.getPosition(this._slider)));if(this._changedHandler)this._changedHandler()}return true},_toValue:function(b){var a;if(this._isHorizontal)a=(b.X-this._thumbControl.width/2)/(this._slider.width-this._thumbControl.width);else{a=(b.Y-this._thumbControl.height/2)/(this._slider.height-this._thumbControl.height);a=1-a}return Math.min(1,Math.max(0,a))},_toLocation:function(a){a=Math.min(1,Math.max(0,a));if(this._isHorizontal)return a*(this._slider.width-this._thumbControl.width)+this._thumbControl.width/2;else{var b=this._slider.height-this._thumbControl.height;return b-a*b+this._thumbControl.height/2}}};Sys.Preview.UI.Xaml.Media._Slider.registerClass("Sys.Preview.UI.Xaml.Media._Slider",Sys.Preview.UI.Xaml.Media._DomElement);Sys.Preview.UI.Xaml.Media._ProgressBar=function(c,d,b){Sys.Preview.UI.Xaml.Media._ProgressBar.initializeBase(this,[c,d]);var a=this.get_control();if(a){this._originalWidth=a.width;a.width=0}if(b){this._xamlText=new Sys.Preview.UI.Xaml.Media._TextBlock(c,b);this._xamlText.set_text("")}};Sys.Preview.UI.Xaml.Media._ProgressBar.prototype={_xamlText:null,_originalWidth:0,get_value:function(){var a=this.get_control();if(!a)return 0;return a.width/this._originalWidth},set_value:function(a){var b=this.get_control();if(b)b.width=this._originalWidth*a;this._xamlText.set_text(""+Math.floor(a*100))},setVisible:function(a){Sys.Preview.UI.Xaml.Media._ProgressBar.callBaseMethod(this,"setVisible",[a]);if(this._xamlText)this._xamlText.setVisible(a)},dispose:function(){Sys.Preview.UI.Xaml.Media._ProgressBar.callBaseMethod(this,"dispose");if(this._xamlText){this._xamlText.dispose();this._xamlText=null}}};Sys.Preview.UI.Xaml.Media._ProgressBar.registerClass("Sys.Preview.UI.Xaml.Media._ProgressBar",Sys.Preview.UI.Xaml.Media._DomElement);Type.registerNamespace('Sys.Preview.UI.Xaml.Media');Sys.Preview.UI.Xaml.Media.Res={"noMediaElement":"The XAML document does not contain a MediaElement.","invalidChapterIndex":"Must be greater than or equal to 0 and less than the length of the chapters array."};if(typeof(Sys)!=='undefined')Sys.Application.notifyScriptLoaded();
