﻿Type.registerNamespace("PhotoSite.Framework");String.prototype.startsWithIgnoreCase=function(A){return this.toLowerCase().startsWith(A.toLowerCase());};String.prototype.endsWithIgnoreCase=function(A){return this.toLowerCase().endsWith(A.toLowerCase());};String.prototype.compare=function(A){if(this>A){return 1;}if(this<A){return -1;}return 0;};String.prototype.compareIgnoreCase=function(C){var A=this.toLowerCase(),B=C.toLowerCase();if(A>B){return 1;}if(A<B){return -1;}return 0;};
if(typeof(Sys)!=='undefined')Sys.Application.notifyScriptLoaded();