/*global mw, jQuery*/
/*jshint curly:false, strict:false */
if (mw.config.get('wgNamespaceNumber') === 6) {
jQuery(document).ready(function () {
var portlet = mw.util.addPortletLink('p-tb', '#', "WhatIsThat?", 'tb-whatisthat', 'Add new language descriptions');
jQuery(portlet).click(function(e) {
e.preventDefault();
var OpenWindow = window.open("https://multidesc.toolforge.org/index.php?raw&image=" + encodeURIComponent(mw.config.get('wgPageName')), "whatisthat-results", "height=550, width=800,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,status=no");
});
});
}