home *** CD-ROM | disk | FTP | other *** search
- onEnterFrame = function()
- {
- urlStart = _url.indexOf("://") + 3;
- urlEnd = _url.indexOf("/",urlStart);
- domain = _url.substring(urlStart,urlEnd);
- LastDot = domain.lastIndexOf(".") - 1;
- pfixEnd = domain.lastIndexOf(".",LastDot) + 1;
- domain = domain.substring(pfixEnd,domain.length);
- if(domain != "" && domain != "armorgames.com")
- {
- _root.exclusive._visible = true;
- }
- else
- {
- _root.exclusive._visible = false;
- }
- };
- this._alpha = 0;
-