").append(msg.d.html); //get the full html response wrapped in temp div
- _this._updateImageFromAjax(rHtml);
- if (typeof callback == "function") {
- //build the parameters to pass back to the callback method
- var params = {
- hasImage: _this._getContainer().find("img.noimage").length == 0,
- mediaId: msg.d.mediaId,
- width: msg.d.width,
- height: msg.d.height,
- url: msg.d.url,
- alt: msg.d.alt
- };
- //call the callback method
- callback.call(_this, params);
- }
- }
- });
- },
-
- showImage: function(path) {
- ///
This will force the image to show the path passed in
- if (this._style != "ThumbnailPreview") {
- this._getContainer().find("img").attr("src", path);
- }
- else {
- c = this._getContainer().find(".bgImage");
- c.css("background-image", "url('" + path + "')");
- }
- },
-
- _getContainer: function() {
- return $("#" + this._containerId, this._context);
- },
-
- _updateImageFromAjax: function(rHtml) {
- this._getContainer().html(rHtml.find(".imageViewer").html()); //replace the html with the inner html of the image viewer response
- },
-
- _showThrobber: function() {
- var c = null;
- if (this._style != "ThumbnailPreview") {
- c = this._getContainer().find("img");
- c.attr("src", this._umbPath + "/images/throbber.gif");
- c.css("margin-top", ((c.height() - 15) / 2) + "px");
- c.css("margin-left", ((c.width() - 15) / 2) + "px");
- }
- else {
- c = this._getContainer().find(".bgImage");
- c.css("background-image", "");
- c.html("
![]()
");
- var img = c.find("img");
- img.attr("src", this._umbPath + "/images/throbber.gif");
- img.css("margin-top", "45px");
- img.css("margin-left", "45px");
- }
- }
- }
- }
-
- // instance manager
- Umbraco.Controls.ImageViewer.cntr = 0;
- Umbraco.Controls.ImageViewer.inst = {};
-
-})(jQuery);
\ No newline at end of file
diff --git a/src/Umbraco.Web/umbraco/controls/Images/UploadMediaImage.js b/src/Umbraco.Web/umbraco/controls/Images/UploadMediaImage.js
deleted file mode 100644
index 323bf945a8..0000000000
--- a/src/Umbraco.Web/umbraco/controls/Images/UploadMediaImage.js
+++ /dev/null
@@ -1,52 +0,0 @@
-///
-
-Umbraco.Sys.registerNamespace("Umbraco.Controls");
-
-(function($) {
- Umbraco.Controls.UploadMediaImage = function(txtBoxTitleID, btnID, uploadFileID) {
- return {
- _txtBoxTitleID: txtBoxTitleID,
- _btnID: btnID,
- _uplaodFileID: uploadFileID,
-
- validateImage: function() {
- // Disable save button
- var imageTypes = ",jpeg,jpg,gif,bmp,png,tiff,tif,";
- var tb_title = document.getElementById(this._txtBoxTitleID);
- var bt_submit = $("#" + this._btnID);
- var tb_image = document.getElementById(this._uplaodFileID);
-
- bt_submit.attr("disabled","disabled").css("color", "gray");
-
- var imageName = tb_image.value;
- if (imageName.length > 0) {
- var extension = imageName.substring(imageName.lastIndexOf(".") + 1, imageName.length);
- if (imageTypes.indexOf(',' + extension.toLowerCase() + ',') > -1) {
- bt_submit.removeAttr("disabled").css("color", "#000");
- if (tb_title.value == "") {
- var curName = imageName.substring(imageName.lastIndexOf("\\") + 1, imageName.length).replace("." + extension, "");
- var curNameLength = curName.length;
- var friendlyName = "";
- for (var i = 0; i < curNameLength; i++) {
- currentChar = curName.substring(i, i + 1);
- if (friendlyName.length == 0)
- currentChar = currentChar.toUpperCase();
-
- if (i < curNameLength - 1 && friendlyName != '' && curName.substring(i - 1, i) == ' ')
- currentChar = currentChar.toUpperCase();
- else if (currentChar != " " && i < curNameLength - 1 && friendlyName != ''
- && curName.substring(i-1, i).toUpperCase() != curName.substring(i-1, i)
- && currentChar.toUpperCase() == currentChar)
- friendlyName += " ";
-
- friendlyName += currentChar;
-
- }
- tb_title.value = friendlyName;
- }
- }
- }
- }
- };
- }
-})(jQuery);
\ No newline at end of file
diff --git a/src/Umbraco.Web/umbraco/css/background.gif b/src/Umbraco.Web/umbraco/css/background.gif
deleted file mode 100644
index f68d5f9560..0000000000
Binary files a/src/Umbraco.Web/umbraco/css/background.gif and /dev/null differ
diff --git a/src/Umbraco.Web/umbraco/css/permissionsEditor.css b/src/Umbraco.Web/umbraco/css/permissionsEditor.css
deleted file mode 100644
index 497191893d..0000000000
--- a/src/Umbraco.Web/umbraco/css/permissionsEditor.css
+++ /dev/null
@@ -1,43 +0,0 @@
-#treeContainer
-{
- float: left;
- width: 45%;
-}
-#permissionsPanel
-{
- display: none;
- float: right;
- height: auto !important;
- min-height: 300px;
- height: 300px;
- width: 48%;
- border-left: 1px solid #D9D7D7;
- margin-left: 20px;
- padding-left: 20px;
-
- position: relative;
- z-index: 100;
-}
-#nodepermissionsList
-{
- list-style: none;
-}
-
-#nodepermissionsList li
-{
- background-color:white;
-}
-
-/* new clearfix */
-.clearfix:after {
- visibility: hidden;
- display: block;
- font-size: 0;
- content: " ";
- clear: both;
- height: 0;
- }
-* html .clearfix { zoom: 1; } /* IE6 */
-*:first-child+html .clearfix { zoom: 1; } /* IE7 */
-
-
diff --git a/src/Umbraco.Web/umbraco/css/splitter.gif b/src/Umbraco.Web/umbraco/css/splitter.gif
deleted file mode 100644
index 4dd2185e91..0000000000
Binary files a/src/Umbraco.Web/umbraco/css/splitter.gif and /dev/null differ
diff --git a/src/Umbraco.Web/umbraco/css/umbLiveEditing.css b/src/Umbraco.Web/umbraco/css/umbLiveEditing.css
deleted file mode 100644
index fa189266ea..0000000000
--- a/src/Umbraco.Web/umbraco/css/umbLiveEditing.css
+++ /dev/null
@@ -1,14 +0,0 @@
-.umbEditItem:hover {
- border: 1px dotted orange;
- padding: 5px;
-}
-
-.umbLiveEditingToggleButton
-{
- display: none;
-}
-
-.umbLiveEditingCancelButton
-{
- margin-left: 10px;
-}
\ No newline at end of file
diff --git a/src/Umbraco.Web/umbraco/css/umbracoGui.css b/src/Umbraco.Web/umbraco/css/umbracoGui.css
deleted file mode 100644
index d89f35e645..0000000000
--- a/src/Umbraco.Web/umbraco/css/umbracoGui.css
+++ /dev/null
@@ -1,455 +0,0 @@
-html, body
-{
- width: 100%;
- height: 100%;
- padding: 0px;
- margin: 0px;
- border: none;
- overflow: hidden;
-}
-
-body
-{
- outline: none;
- padding: 0px;
- margin: 0px;
- background: #fff url(../../umbraco_client/images/progressbar.gif) center 300px no-repeat;
- overflow: auto;
- font-size: 11px;
-}
-
-#appLoading
-{
- background: #fff url(../../umbraco_client/images/progressbar.gif) center center no-repeat;
- overflow: auto;
- width: 300px;
- height: 100px;
-}
-
-/*TOP*/
-.topBar
-{
- padding: 10px 0px 10px 10px;
- margin-bottom: 3px;
- height: 22px;
- background: url(../images/topGradient.gif) repeat-x top;
-}
-
-.topBarButtons
-{
- float: right;
- padding-right: 10px;
-}
-.topBarButtons button, button.topBarButton
-{
- height: 26px;
- margin-top: -1px;
- padding: 3px;
- margin-left: 10px;
- vertical-align: middle;
- font-size: 9px;
-}
-.topBarButtons button span, button.topBarButton span
-{
- font-size: 9px;
- vertical-align: middle;
-}
-.topBarButtons button img, button.topBarButton img
-{
- margin-right: 5px;
- vertical-align: middle;
-}
-#buttonCreate
-{
- margin-left: 0px;
-}
-
-/* MAIN UI AREA */
-#treeWindow_content
-{
- padding-top: 5px;
- padding-right: 0px;
-}
-#PlaceHolderAppIcons_content
-{
- overflow: auto;
-}
-
-#control_overlay
-{
- background-color: #000;
-}
-#treeToggle
-{
- display: none;
- position: absolute;
- top: 45px;
- left: 2px;
- width: 7px;
- height: 120px;
- background: url(../images/toggleTreeOff.png) no-repeat center center;
- outline: none;
- text-decoration: none;
- overflow: hidden;
-}
-#treeToggle:hover
-{
- background-color: #F4F5F4;
-}
-#treeToggle.on
-{
- background-image: url(../images/toggleTreeOn.png) !important;
-}
-
-#leftDIV
-{
- width: 20%;
- position: absolute;
- top: 0px;
- left: 0px;
-}
-#rightDIV
-{
- width: 70%;
- position: absolute;
- top: 0px;
- right: 0px;
-}
-#uiArea
-{
- position: relative;
- margin: 0px 10px 0px 10px;
- display: none;
-}
-
-#defaultSpeechbubble
-{
- z-index: 10;
- display: none;
- width: 231px;
- position: absolute;
- right: 30px;
- bottom: 20px;
- margin: 0px;
- padding: 0;
-}
-.speechClose
-{
- float: right;
- width: 18px;
- height: 18px;
- margin-right: 18px;
- display: none;
-}
-.speechBubbleTop
-{
- background: url('../images/speechbubble/speechbubble_top.png') no-repeat;
- width: 235px;
- height: 6px;
- margin: 0px 0px 0px 3px;
- padding: 0;
-}
-.speechBubbleContent
-{
- background: url('../images/speechbubble/speechbubble_body.png') no-repeat;
- width: 235px;
- margin: 0;
- padding: 5px 20px 5px 10px;
-}
-.speechBubbleBottom
-{
- background: url('../images/speechbubble/speechbubble_bottom.png') no-repeat;
- width: 235px;
- height: 30px;
- margin: 0px 0px 0px 1px;
- padding: 0;
-}
-.speechBubbleContent h3
-{
- font-size: 14px;
- font-weight: bold;
- font-family: Trebuchet MS, Lucida Grande, verdana, arial;
- margin: 0;
- padding: 0;
- display: block;
- width: 220px;
-}
-.speechBubbleContent p
-{
- font-size: 11px;
- font-family: Trebuchet MS, Lucida Grande, verdana, arial;
- margin: 0;
- width: 180px;
-}
-#tray
-{
- margin: 0px;
- padding: 7px 0;
-}
-
-#tray li
-{
- list-style-type: none;
- font-size: 37px;
- width: 49px;
- height: 36px;
- display: block;
- float: left;
- padding: 0;
- margin: 0;
- padding-bottom: 7px;
-}
-
-#tray li a
-{
- background-image: url('../images/tray/traySprites.png');
- background-repeat: no-repeat;
- text-decoration: none;
- padding: 0;
- margin: 0;
- color: #fff;
- font-size: 1px;
- width: 49px;
- height: 36px;
- display: block;
-}
-
-.trayHolder, .trayIcon
-{
- border: 0px;
- width: 49px;
- height: 36px;
-}
-/* tray sprites */
-.traycontent
-{
- background-position: -18px -18px;
-}
-.traymedia
-{
- background-position: -18px -90px;
-}
-.trayusers
-{
- background-position: -18px -162px;
-}
-.traysettings
-{
- background-position: -18px -234px;
-}
-.traydeveloper
-{
- background-position: -18px -306px;
-}
-.traymember
-{
- background-position: -18px -378px;
-}
-.traystats
-{
- background-position: -18px -450px;
-}
-.traytranslation
-{
- background-position: -18px -522px;
-}
-/* end tray sprites */
-
-
-a
-{
- color: Black;
-}
-
-a:hover
-{
- text-decoration: underline;
-}
-
-img
-{
- border: none;
-}
-
-/* AUTOCOMPLETE */
-
-.umbracoSearchHolder #umbSearchField
-{
- width: 250px;
- color: #999;
- padding: 2px;
-}
-.ac_results
-{
- padding: 3px;
- border: 1px solid #979797;
- background-color: #f0f0f0;
- border-top: none;
- overflow: hidden;
- z-index: 99999;
-}
-
-.ac_results ul
-{
- width: 100%;
- list-style-position: outside;
- list-style: none;
- padding: 0;
- margin: 0;
-}
-
-.ac_results li
-{
- display: block;
- padding: 2px;
- padding-left: 5px; /* it is very important, if line-height not setted or setted in relative units scroll will be broken in firefox */
- line-height: 20px;
- overflow: hidden;
- font-family: Arial,Lucida Grande;
- font-size: 11px;
- height: 20px;
- color: #1a1818;
- cursor: pointer;
-}
-
-.ac_results .ac_odd
-{
-}
-
-.ac_results .ac_over
-{
- background-color: #D5EFFC;
- border: 1px solid #a8d8eb;
- padding: 1px !important;
- padding-left: 4px !important;
-}
-
-.ac_results span.nodeId
-{
- font-size: smaller;
-}
-
-.ac_loading
-{
- background-image: url('../images/throbber.gif');
- background-position: right;
- background-repeat: no-repeat;
-}
-
-.error, .notice, .success
-{
- padding: .8em;
- padding-top: 0em;
- padding-bottom: 0em;
- margin-bottom: .5em;
- border: 2px solid #ddd;
-}
-.error
-{
- background: #FBE3E4;
- color: #8a1f11;
- border-color: #FBC2C4;
-}
-.notice
-{
- background: #FFF6BF;
- color: #514721;
- border-color: #FFD324;
-}
-.success
-{
- background: #E6EFC2;
- color: #264409;
- border-color: #C6D880;
-}
-.error a
-{
- color: #8a1f11;
-}
-.notice a
-{
- color: #514721;
-}
-.success a
-{
- color: #264409;
-}
-.errormessage
-{
- color: #8a1f11;
-}
-
-p
-{
- font-family: Trebuchet MS, Lucida Grande, verdana, arial;
- font-size: 11px;
-}
-h3
-{
- font-family: Trebuchet MS, Lucida Grande, verdana, arial;
- font-size: 14px;
-}
-
-/* Renew session modal */
-
-#fullmodal-overlay
-{
- background:#000;
-}
-#logout-refresh
-{
- background:#fff url(../images/umbracosplash.png) no-repeat 50% 0%;
- background-color: #fff;
- border: 5px solid #a3a3a3;
- padding:65px 10px 10px 10px;
- width:230px;
- height:135px;
-}
-
-#logout-refresh p
-{
- margin:0 0 10px 0;
- text-align:center;
- font-size:2em;
- font-weight:bold;
- color:#666;
-}
-
-#sessionrefreshpassword label
-{
- position:absolute;
- color:#ccc;
- font-family: Trebuchet MS, Lucida Grande, verdana, arial;
- font-size:13px;
- padding:5px;
-}
-
-
-#sessionrefreshpassword input
-{
- width:220px;
- padding:5px;
- font-size:13px;
- background:none;
- border:1px solid #999;
-}
-
-#sessionrefreshbuttons
-{
- margin-top:10px;
- text-align:center;
- font-size: 11px;
- font-family: Trebuchet MS, Lucida Grande, verdana, arial;
-}
-
-#sessionrefreshbuttons a
-{
- color:blue;
-}
-
-#sessionrefreshbuttons button
-{
- font-size: 13px;
- color:#333;
- font-family: Trebuchet MS, Lucida Grande, verdana, arial;
-}
\ No newline at end of file
diff --git a/src/Umbraco.Web/umbraco/dashboard/air/DesktopMediaUploader.air b/src/Umbraco.Web/umbraco/dashboard/air/DesktopMediaUploader.air
deleted file mode 100644
index 6716c2c96b..0000000000
Binary files a/src/Umbraco.Web/umbraco/dashboard/air/DesktopMediaUploader.air and /dev/null differ
diff --git a/src/Umbraco.Web/umbraco/dashboard/images/TV.png b/src/Umbraco.Web/umbraco/dashboard/images/TV.png
deleted file mode 100644
index ce85585b28..0000000000
Binary files a/src/Umbraco.Web/umbraco/dashboard/images/TV.png and /dev/null differ
diff --git a/src/Umbraco.Web/umbraco/dashboard/images/ZipFile.png b/src/Umbraco.Web/umbraco/dashboard/images/ZipFile.png
deleted file mode 100644
index 4ba5a52877..0000000000
Binary files a/src/Umbraco.Web/umbraco/dashboard/images/ZipFile.png and /dev/null differ
diff --git a/src/Umbraco.Web/umbraco/dashboard/images/contour-icon.png b/src/Umbraco.Web/umbraco/dashboard/images/contour-icon.png
deleted file mode 100644
index 5553dd0885..0000000000
Binary files a/src/Umbraco.Web/umbraco/dashboard/images/contour-icon.png and /dev/null differ
diff --git a/src/Umbraco.Web/umbraco/dashboard/images/courier-icon.png b/src/Umbraco.Web/umbraco/dashboard/images/courier-icon.png
deleted file mode 100644
index 085caa6f89..0000000000
Binary files a/src/Umbraco.Web/umbraco/dashboard/images/courier-icon.png and /dev/null differ
diff --git a/src/Umbraco.Web/umbraco/dashboard/images/dmu-badge.jpg b/src/Umbraco.Web/umbraco/dashboard/images/dmu-badge.jpg
deleted file mode 100644
index f3acad7bae..0000000000
Binary files a/src/Umbraco.Web/umbraco/dashboard/images/dmu-badge.jpg and /dev/null differ
diff --git a/src/Umbraco.Web/umbraco/dashboard/images/dmu.png b/src/Umbraco.Web/umbraco/dashboard/images/dmu.png
deleted file mode 100644
index f4cb2889d9..0000000000
Binary files a/src/Umbraco.Web/umbraco/dashboard/images/dmu.png and /dev/null differ
diff --git a/src/Umbraco.Web/umbraco/dashboard/images/logo.gif b/src/Umbraco.Web/umbraco/dashboard/images/logo.gif
deleted file mode 100644
index e909cea746..0000000000
Binary files a/src/Umbraco.Web/umbraco/dashboard/images/logo.gif and /dev/null differ
diff --git a/src/Umbraco.Web/umbraco/dashboard/images/logo32x32.png b/src/Umbraco.Web/umbraco/dashboard/images/logo32x32.png
deleted file mode 100644
index 5d92b25b8e..0000000000
Binary files a/src/Umbraco.Web/umbraco/dashboard/images/logo32x32.png and /dev/null differ
diff --git a/src/Umbraco.Web/umbraco/dashboard/images/membersearch.png b/src/Umbraco.Web/umbraco/dashboard/images/membersearch.png
deleted file mode 100644
index 07f78f7517..0000000000
Binary files a/src/Umbraco.Web/umbraco/dashboard/images/membersearch.png and /dev/null differ
diff --git a/src/Umbraco.Web/umbraco/dashboard/images/starterkit-icon.png b/src/Umbraco.Web/umbraco/dashboard/images/starterkit-icon.png
deleted file mode 100644
index a0b85d811c..0000000000
Binary files a/src/Umbraco.Web/umbraco/dashboard/images/starterkit-icon.png and /dev/null differ
diff --git a/src/Umbraco.Web/umbraco/dashboard/images/starterkit32x32.png b/src/Umbraco.Web/umbraco/dashboard/images/starterkit32x32.png
deleted file mode 100644
index 3e8d3d2ff6..0000000000
Binary files a/src/Umbraco.Web/umbraco/dashboard/images/starterkit32x32.png and /dev/null differ
diff --git a/src/Umbraco.Web/umbraco/dashboard/scripts/jquery.jfeed.pack.js b/src/Umbraco.Web/umbraco/dashboard/scripts/jquery.jfeed.pack.js
deleted file mode 100644
index 7a696c005b..0000000000
--- a/src/Umbraco.Web/umbraco/dashboard/scripts/jquery.jfeed.pack.js
+++ /dev/null
@@ -1 +0,0 @@
-eval(function(p,a,c,k,e,d){e=function(c){return(c
35?String.fromCharCode(c+29):c.toString(36))};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('3.X=a(h){h=3.J({v:D,C:D,u:D},h);k(h.v){$.W({t:\'V\',v:h.v,C:h.C,U:\'4\',u:a(4){d f=j B(4);k(3.T(h.u))h.u(f)}})}};a B(4){k(4)2.K(4)};B.r={t:\'\',l:\'\',c:\'\',b:\'\',g:\'\',K:a(4){k(3(\'8\',4).y==1){2.t=\'x\';d s=j z(4)}H k(3(\'f\',4).y==1){2.t=\'S\';d s=j A(4)}k(s)3.J(2,s)}};a o(){};o.r={c:\'\',b:\'\',g:\'\',i:\'\',n:\'\'};a A(4){2.q(4)};A.r={q:a(4){d 8=3(\'f\',4).9(0);2.l=\'1.0\';2.c=3(8).5(\'c:e\').6();2.b=3(8).5(\'b:e\').p(\'I\');2.g=3(8).5(\'R:e\').6();2.w=3(8).p(\'4:Q\');2.i=3(8).5(\'i:e\').6();2.m=j G();d f=2;3(\'P\',4).F(a(){d 7=j o();7.c=3(2).5(\'c\').9(0).6();7.b=3(2).5(\'b\').9(0).p(\'I\');7.g=3(2).5(\'O\').9(0).6();7.i=3(2).5(\'i\').9(0).6();7.n=3(2).5(\'n\').9(0).6();f.m.E(7)})}};a z(4){2.q(4)};z.r={q:a(4){k(3(\'x\',4).y==0)2.l=\'1.0\';H 2.l=3(\'x\',4).9(0).p(\'l\');d 8=3(\'8\',4).9(0);2.c=3(8).5(\'c:e\').6();2.b=3(8).5(\'b:e\').6();2.g=3(8).5(\'g:e\').6();2.w=3(8).5(\'w:e\').6();2.i=3(8).5(\'N:e\').6();2.m=j G();d f=2;3(\'7\',4).F(a(){d 7=j o();7.c=3(2).5(\'c\').9(0).6();7.b=3(2).5(\'b\').9(0).6();7.g=3(2).5(\'g\').9(0).6();7.i=3(2).5(\'M\').9(0).6();7.n=3(2).5(\'L\').9(0).6();f.m.E(7)})}};',60,60,'||this|jQuery|xml|find|text|item|channel|eq|function|link|title|var|first|feed|description|options|updated|new|if|version|items|id|JFeedItem|attr|_parse|prototype|feedClass|type|success|url|language|rss|length|JRss|JAtom|JFeed|data|null|push|each|Array|else|href|extend|parse|guid|pubDate|lastBuildDate|content|entry|lang|subtitle|atom|isFunction|dataType|GET|ajax|getFeed'.split('|')))
diff --git a/src/Umbraco.Web/umbraco/dashboard/scripts/swfobject.js b/src/Umbraco.Web/umbraco/dashboard/scripts/swfobject.js
deleted file mode 100644
index 08fb27000e..0000000000
--- a/src/Umbraco.Web/umbraco/dashboard/scripts/swfobject.js
+++ /dev/null
@@ -1,5 +0,0 @@
-/* SWFObject v2.1
- Copyright (c) 2007-2008 Geoff Stearns, Michael Williams, and Bobby van der Sluis
- This software is released under the MIT License
-*/
-var swfobject=function(){var b="undefined",Q="object",n="Shockwave Flash",p="ShockwaveFlash.ShockwaveFlash",P="application/x-shockwave-flash",m="SWFObjectExprInst",j=window,K=document,T=navigator,o=[],N=[],i=[],d=[],J,Z=null,M=null,l=null,e=false,A=false;var h=function(){var v=typeof K.getElementById!=b&&typeof K.getElementsByTagName!=b&&typeof K.createElement!=b,AC=[0,0,0],x=null;if(typeof T.plugins!=b&&typeof T.plugins[n]==Q){x=T.plugins[n].description;if(x&&!(typeof T.mimeTypes!=b&&T.mimeTypes[P]&&!T.mimeTypes[P].enabledPlugin)){x=x.replace(/^.*\s+(\S+\s+\S+$)/,"$1");AC[0]=parseInt(x.replace(/^(.*)\..*$/,"$1"),10);AC[1]=parseInt(x.replace(/^.*\.(.*)\s.*$/,"$1"),10);AC[2]=/r/.test(x)?parseInt(x.replace(/^.*r(.*)$/,"$1"),10):0}}else{if(typeof j.ActiveXObject!=b){var y=null,AB=false;try{y=new ActiveXObject(p+".7")}catch(t){try{y=new ActiveXObject(p+".6");AC=[6,0,21];y.AllowScriptAccess="always"}catch(t){if(AC[0]==6){AB=true}}if(!AB){try{y=new ActiveXObject(p)}catch(t){}}}if(!AB&&y){try{x=y.GetVariable("$version");if(x){x=x.split(" ")[1].split(",");AC=[parseInt(x[0],10),parseInt(x[1],10),parseInt(x[2],10)]}}catch(t){}}}}var AD=T.userAgent.toLowerCase(),r=T.platform.toLowerCase(),AA=/webkit/.test(AD)?parseFloat(AD.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,q=false,z=r?/win/.test(r):/win/.test(AD),w=r?/mac/.test(r):/mac/.test(AD);/*@cc_on q=true;@if(@_win32)z=true;@elif(@_mac)w=true;@end@*/return{w3cdom:v,pv:AC,webkit:AA,ie:q,win:z,mac:w}}();var L=function(){if(!h.w3cdom){return }f(H);if(h.ie&&h.win){try{K.write("
-
-