CINXE.COM
Dataset - UWWTDArt15
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta content="text/html; charset=UTF-8" http-equiv="Content-Type"/> <link rel="stylesheet" type="text/css" href="https://www.eionet.europa.eu/styles/eionet2007/print.css" media="print" /> <link rel="stylesheet" type="text/css" href="https://www.eionet.europa.eu/styles/eionet2007/handheld.css" media="handheld" /> <link rel="stylesheet" type="text/css" href="https://www.eionet.europa.eu/styles/eionet2007/screen.css" media="screen" /> <link rel="stylesheet" type="text/css" href="/css/eionet2007.css" media="screen"/> <link rel="stylesheet" type="text/css" href="/css/print.css" media="print" /> <link rel="stylesheet" type="text/css" href="/css/smoothness/jquery-ui-1.8.16.custom.css" /> <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"/> <script type="text/javascript" src="/pageops.js"></script> <script type="text/javascript" src="/mark_special_links.js"></script> <script type="text/javascript" src="/scripts/jquery-1.6.2.min.js"></script> <script type="text/javascript" src="/scripts/jquery-ui-1.8.16.custom.min.js"></script> <script type="text/javascript" src="/script.js"></script> <script type="text/javascript" src="/helpPopup.js"></script> <title>Dataset - UWWTDArt15</title> <script type="text/javascript" src="/modal_dialog.js"></script> <script type="text/javascript"> // <![CDATA[ function linkDataset(checkedoutCopyId){ var url="datasets.jsp?ctx=popup®Status=Released,Candidate,Recorded,Qualified®StatusFilter=false&exclude="+checkedoutCopyId; wLink = window.open(''+'/'+url,"Search","height=800,width=1220,status=yes,toolbar=yes,scrollbars=yes,resizable=yes,menubar=no,location=no"); if (window.focus){ wLink.focus(); } } function pickDataset(id, shortName){ document.forms["form1"].elements["successor_id"].value = id; document.getElementById("successorName").href = "/datasets/"+id; document.getElementById("successorName").innerHTML = shortName; document.getElementById("successorName").onclick = "return true"; return true; } function statusSelectionChanged(changedForm) { if (document.getElementById("reg_status_select").value.toLowerCase() == 'superseded') { document.getElementById("successor").style.display = 'inline'; } else { document.getElementById("successor").style.display = 'none'; } form_changed(changedForm); } function warnDatasetStatus(datasetStatus, action) { if (datasetStatus.toLowerCase() == 'retired' || datasetStatus.toLowerCase() == 'superseded') { if (['a', 'e', 'i', 'o', 'u'].indexOf(datasetStatus.toLowerCase().charAt(0))!=-1) { return confirm('The '+action+' you are about to perform is based on an '+datasetStatus+' dataset. If you want to continue click OK. Otherwise click Cancel.'); } else { return confirm('The '+action+' you are about to perform is based on a '+datasetStatus+' dataset. If you want to continue click OK. Otherwise click Cancel.'); } } else { return true; } } function deleteDatasetReady() { document.forms["form1"].elements["mode"].value = "delete"; document.forms["form1"].submit(); } function submitForm(mode) { if (mode == "delete") { alert("You have no permission to delete this dataset!"); return; var b = confirm("You are about to delete a Released dataset! Are you sure you want to do this? Click OK, if yes. Otherwise click Cancel."); if (b==false) return; // now ask if the deletion should be complete (as opposed to settign the 'deleted' flag) openNoYes("/yesno_dialog.html", "Do you want the dataset to be deleted permanently (answering No will enable to restore it later)?", delDialogReturn,100, 400); return; } if (mode != "delete") { if (!checkObligations()) { alert("You have not specified one of the mandatory atttributes!"); return; } if (hasWhiteSpace("idfier")) { alert("Identifier cannot contain any white space!"); return; } if (!validForXMLTag(document.forms["form1"].elements["idfier"].value)) { alert("Identifier not valid for usage as an XML tag! " + "In the first character only underscore or latin characters are allowed! " + "In the rest of characters only underscore or hyphen or dot or 0-9 or latin characters are allowed!"); return; } //slctAllValues(); } if (mode=="editclose") { mode = "edit"; document.forms["form1"].elements["saveclose"].value = "true"; } document.forms["form1"].elements["mode"].value = mode; document.forms["form1"].submit(); } function delDialogReturn() { var v = dialogWin.returnValue; if (v == null || v=="" || v=="cancel") return; document.forms["form1"].elements["complete"].value = v; deleteDatasetReady(); } function checkObligations() { var o = document.forms["form1"].ds_name; if (o!=null && o.value.length == 0) return false; if ($("#form1 .vocabularyAttributeMandatoryValidationError").length) { return false; } var elems = document.forms["form1"].elements; for (var i=0; elems!=null && i<elems.length; i++) { var elem = elems[i]; var elemName = elem.name; var elemValue = elem.value; if (startsWith(elemName, "attr_")) { var o = document.forms["form1"].elements[i+1]; if (o == null) return false; if (!startsWith(o.name, "oblig_")) continue; if (o.value == "M" && (elemValue == null || elemValue.length == 0)) { return false; } } } return true; } function hasWhiteSpace(input_name) { var elems = document.forms["form1"].elements; if (elems == null) return false; for (var i=0; i<elems.length; i++) { var elem = elems[i]; if (elem.name == input_name) { var val = elem.value; if (val.indexOf(" ") != -1) return true; } } return false; } function startsWith(str, pattern) { var i = str.indexOf(pattern,0); if (i!=-1 && i == 0) return true; else return false; } function endsWith(str, pattern) { var i = str.indexOf(pattern, str.length-pattern.length); if (i!=-1) return true; else return false; } function checkIn() { submitCheckIn(); } function submitCheckIn() { var b = confirm("You are checking in with Released status! This will automatically release your changes into public view. " + "If you want to continue, click OK. Otherwise click Cancel."); if (b==false) return; document.forms["form1"].elements["check_in"].value = "true"; document.forms["form1"].elements["mode"].value = "edit"; document.forms["form1"].submit(); } function goTo(mode, id) { if (mode == "edit") { document.location.assign("/datasets/" + id + "/edit"); } else if (mode=="checkout") { document.location.assign("/datasets/" + id + "/checkout"); } else if (mode=="newversion") { document.location.assign("/datasets/" + id + "/newversion"); } else if (mode=="view") { document.location.assign("/datasets/" + id); } } function slctAllValues() { var elems = document.forms["form1"].elements; if (elems == null) return true; for (var j=0; j<elems.length; j++) { var elem = elems[j]; var elemName = elem.name; if (startsWith(elemName, "attr_mult_")) { var slct = document.forms["form1"].elements[elemName]; if (slct.options && slct.length) { if (slct.length==1 && slct.options[0].value=="" && slct.options[0].text=="") { slct.remove(0); slct.length = 0; } for (var i=0; i<slct.length; i++) { slct.options[i].selected = "true"; } } } } } function validForXMLTag(str) { // if empty string not allowed for XML tag if (str == null || str.length == 0) { return false; } // check the first character (only underscore or A-Z or a-z allowed) var ch = str.charCodeAt(0); if (!(ch==95 || (ch>=65 && ch<=90) || (ch>=97 && ch<=122))) { return false; } // check the rets of characters ((only underscore or hyphen or dot or 0-9 or A-Z or a-z allowed)) if (str.length==1) return true; for (var i=1; i<str.length; i++) { ch = str.charCodeAt(i); if (!(ch==95 || ch==45 || ch==46 || (ch>=48 && ch<=57) || (ch>=65 && ch<=90) || (ch>=97 && ch<=122))) { return false; } } return true; } function openStructure(url){ window.open(url,null,"height=600,width=800,status=yes,toolbar=yes,scrollbars=yes,resizable=yes,menubar=yes,location=yes"); } // ]]> </script> </head> <body> <div id="container"> <div id="toolribbon"> <div id="lefttools"> <a id="eealink" href="https://www.eea.europa.eu/">EEA</a> <a id="ewlink" href="https://ew.eea.europa.eu/">EnviroWindows</a> </div> <div id="righttools"> <a id="loginlink" href="https://sso.eionet.europa.eu/login?service=http%3A%2F%2Fdd.eionet.europa.eu%2Flogin" title="Login">Login</a> <a id="printlink" title="Print this page" href="javascript:this.print();"><span>Print</span></a> <a id="fullscreenlink" href="javascript:toggleFullScreenMode()" title="Switch to/from full screen mode"><span>Switch to/from full screen mode</span></a> <a id="eionetlink" title="Go to Eionet portal" href="https://www.eionet.europa.eu/"><span>Eionet portal</span></a> </div> </div> <!-- toolribbon --> <div id="pagehead"> <a href="/"><img src="/images/eea-print-logo.gif" alt="Logo" id="logo" /></a> <div id="networktitle">Eionet</div> <div id="sitetitle">Data Dictionary</div> <div id="sitetagline">This service is part of Reportnet</div> </div> <!-- pagehead --> <div id="menuribbon"> </div> <div class="breadcrumbtrail"> <div class="breadcrumbhead">You are here:</div> <div class="breadcrumbitem eionetaccronym"><a href="https://www.eionet.europa.eu">Eionet</a></div> <div class="breadcrumbitem"><a href="/">Data Dictionary</a></div> <div class="breadcrumbitemlast">Dataset</div> <div class="breadcrumbtail"> </div> </div> <div id="leftcolumn" class="localnav"> <ul> <li ><a href="/documentation">Help and documentation</a></li> <li class="current"><a href="/datasets.jsp">Datasets</a></li> <li ><a href="/searchtables">Tables</a></li> <li ><a href="/searchelements">Data elements</a></li> <li ><a href="/schemasets/browse/">Schemas</a></li> <li ><a href="/vocabularies">Vocabularies</a></li> <li ><a href="/services/list">Services</a></li> <li ><a href="/namespaces">Namespaces</a></li> </ul> </div> <div id="workarea"> <h1>View dataset definition</h1> <!-- quick links --> <div id="quickbar"><ul> <li class="quickLink"><a href="#model">Data model</a></li> <li class="quickLink"><a href="#tables">Tables</a></li> </ul></div> <form id="form1" method="post" action="/datasets" style="clear:both"> <div style="display:none"> <input type="hidden" name="ds_id" value="3539"/> </div> <!--=======================--> <!-- main table inside div --> <!--=======================--> <!-- pdfs & schema & docs --> <script type="text/javascript"> $(function() { applyExportOptionsToggle(); }); </script> <div id="createbox"> <ul> <li> <a rel="nofollow" href="/GetPrintout?format=PDF&obj_type=DST&obj_id=3539&out_type=GDLN" class="pdf" onclick="return warnDatasetStatus('Released', 'download')"> Create technical specification for this dataset </a> </li> <li> <a rel="nofollow" href="/v2/dataset/3539/schema-dst-3539.xsd" class="xsd"> Create an XML Schema for this dataset - version 2 </a> </li> <li> <a rel="nofollow" href="/GetXls?obj_type=dst&obj_id=3539&new_schema=true" class="excel" onclick="return warnDatasetStatus('Released', 'download')"> Create an MS Excel template for this dataset - version 2 </a> <a class="helpButton" href="/help.jsp?screen=dataset&area=excel"></a> </li> <li> <a rel="nofollow" href="/codelists/datasets/3539/csv" class="csv">Get the comma-separated codelists of this dataset</a> </li> %> <li> <a rel="nofollow" href="/codelists/datasets/3539/xml" class="xml">Get the codelists of this dataset in XML format</a> </li> </ul> </div> <!-- start dotted --> <div id="outerframe"> <!-- attributes --> <table class="datatable results"> <!-- static attributes --> <!-- Identifier --> <tr class="odd"> <th scope="row" class="scope-row simple_attr_title"> Identifier <a class="helpButton" href="/help.jsp?screen=dataset&area=identifier"></a> </th> <td class="simple_attr_value"> <b>UWWTDArt15</b> <input type="hidden" name="idfier" value="UWWTDArt15"/> </td> </tr> <!-- short name --> <tr id="short_name_row" class="even"> <th class="scope-row short_name"> Short name <a class="helpButton" href="/help.jsp?screen=dataset&area=short_name"></a> </th> <td class="short_name_value"> UWWTDArt15 <input type="hidden" name="ds_name" value="UWWTDArt15"/> </td> </tr> <!-- RegistrationStatus --> <tr class="odd"> <th scope="row" class="scope-row simple_attr_title"> Registration status <a class="helpButton" href="/help.jsp?screen=dataset&area=regstatus"></a> </th> <td class="simple_attr_value"> Released <span>16 May 2024</span> </td> </tr> <!-- Reference URL --> <tr class="even"> <th scope="row" class="scope-row simple_attr_title"> Reference URL <a class="helpButton" href="/help.jsp?screen=dataset&area=refurl"></a> </th> <td class="simple_attr_value"> <small><a href="http://dd.eionet.europa.eu/datasets/latest/UWWTDArt15">http://dd.eionet.europa.eu/datasets/latest/UWWTDArt15</a></small> </td> </tr> <!-- dynamic attributes --> <tr class="odd"> <th scope="row" class="scope-row simple_attr_title"> Name <a class="helpButton" href="/help.jsp?attrid=1&attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> Urban Waste Water Treatment Directive reporting under Article 15 - review <input type="hidden" name="oblig_1" value="M"/> </td> <!-- end of dynamic attribute value display --> </tr> <!-- end of dynamic attribute row --> <tr class="even"> <th scope="row" class="scope-row simple_attr_title"> Short Description <a class="helpButton" href="/help.jsp?attrid=15&attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> Definition of data reported by countries under the Urban Waste Water Treatment Directive, Article 15 reporting obligation (UWWTD Implementation). <input type="hidden" name="oblig_15" value="O"/> </td> <!-- end of dynamic attribute value display --> </tr> <!-- end of dynamic attribute row --> <tr class="odd"> <th scope="row" class="scope-row simple_attr_title"> Definition <a class="helpButton" href="/help.jsp?attrid=4&attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> Data reported by countries under the UWWT Directive - Article 15 reporting obligation.<br/>Urban Waste Water Treatment Directive concerns the collection, treatment and discharge of urban waste water and the treatment and discharge of waste water from certain industrial sectors. The objective of the Directive is to protect the environment from the adverse effects of the above mentioned waste water discharges. <input type="hidden" name="oblig_4" value="O"/> </td> <!-- end of dynamic attribute value display --> </tr> <!-- end of dynamic attribute row --> <tr class="even"> <th scope="row" class="scope-row simple_attr_title"> Methodology for obtaining data <a class="helpButton" href="/help.jsp?attrid=17&attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> The data requested through the Reportnet process should be derived from existing national and/or regional information systems within each Member State.<br/><br/>Member States are asked to provide the information inventory on the core elements of the Directive, in particular:<br/><br/>   1.   Information and geo-referenced information on designated sensitive areas and their catchments (and also less sensitive areas in the case they have been designated)<br/>   2.   Information on agglomerations, including waste water collection, conduction, treatment performance, discharging points, receiving areas, receiving water bodies etc.    <br/>   3.   Aggregated information at Member State level on sewage sludge and waste water reuse<br/><br/>The reference year to report is 2022; status as on 31/12/2022; monitoring results for the year 2022: from 01/01/2022 to 31/12/2022.<br/>The information for the entire Member State has to be consistent and refer to a unique, clearly indicated, reporting year. <br/><br/>Reporting under the UWWTD will be carried out by uploading data into WISE via ReportNet (the European Environment Agency's electronic infrastructure for data collection). Member States are asked to upload their UWWTD Art. 15 data following the reporting templates into a Central Data Repository (CDR). Additional documents and reports can be uploaded next to data files as well. For this reporting exercise, the European Environment Agency (EEA) provided the access rights to the reporters nominated by the Member States to upload the report in WISE.<br/><br/>Instructions on “How to use ReportNet for reporting under the Urban Waste Water treatment Directive” for the submission of the reports from the Member States in pursuance of UWWTD are available at <a href="http://cdr.eionet.europa.eu/help/UWWTD">http://cdr.eionet.europa.eu/help/UWWTD</a> (under “Dataflow specific instructions", sub-section "Urban Waste Water Treatment Directive – Implementation - Article 15“). All technical supporting documents are also available via this link. <br/><br/>A technical help desk on the reporting exercise will be provided by the European Topic Centre Biodiversity and Ecosystems (ETC-BE), and will be available for six months after the launch of the reporting exercise. The helpdesk can be contacted via e-mail on uwwtd.helpdesk@eionet.europa.eu.<br/> <input type="hidden" name="oblig_17" value="O"/> </td> <!-- end of dynamic attribute value display --> </tr> <!-- end of dynamic attribute row --> <tr class="odd"> <th scope="row" class="scope-row simple_attr_title"> Planned updating frequency <a class="helpButton" href="/help.jsp?attrid=18&attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> 2 years <input type="hidden" name="oblig_18" value="O"/> </td> <!-- end of dynamic attribute value display --> </tr> <!-- end of dynamic attribute row --> <tr class="even"> <th scope="row" class="scope-row simple_attr_title"> Version <a class="helpButton" href="/help.jsp?attrid=39&attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> October 2023 <input type="hidden" name="oblig_39" value="O"/> </td> <!-- end of dynamic attribute value display --> </tr> <!-- end of dynamic attribute row --> <tr class="odd"> <th scope="row" class="scope-row simple_attr_title"> Owner (Accountable) <a class="helpButton" href="/help.jsp?attrid=61&attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> <input type="hidden" name="oblig_61" value="O"/> </td> <!-- end of dynamic attribute value display --> </tr> <!-- end of dynamic attribute row --> <tr class="even"> <th scope="row" class="scope-row simple_attr_title"> Responsible <a class="helpButton" href="/help.jsp?attrid=62&attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> <input type="hidden" name="oblig_62" value="M"/> </td> <!-- end of dynamic attribute value display --> </tr> <!-- end of dynamic attribute row --> <!-- dataset number --> <!-- add, save, check-in, undo check-out buttons --> </table> <!-- end of attributes --> <!-- data model --> <h2 id="model"> Data model </h2> <div class="figure-plus-container"> <div class="figure-plus"> <div class="figure-image"> <a href="/visuals/UWWTD_Art15_9thPeriod_20160121_schema.jpg"><img src="/visuals/UWWTD_Art15_9thPeriod_20160121_schema.jpg" alt="thumbnail" class="scaled poponmouseclick"/></a> </div> <div class="figure-note"> Click thumbnail to view large version of the data model </div> </div> </div> <!-- tables list --> <h2 id="tables"> Dataset tables </h2> <table class="datatable results"> <col style="width:50%"/> <col style="width:50%"/> <thead> <tr> <th>Full name</th> <th>Short name</th> </tr> </thead> <tbody> <tr class="odd"> <td> <a href="/tables/11933" title="Reporter"> Reporter </a> </td> <td> Reporter </td> </tr> <tr class="even"> <td> <a href="/tables/11934" title="ReportPeriod"> ReportPeriod </a> </td> <td> ReportPeriod </td> </tr> <tr class="odd"> <td> <a href="/tables/11939" title="Contacts"> Contacts </a> </td> <td> Contacts </td> </tr> <tr class="even"> <td> <a href="/tables/11931" title="ReceivingAreasSAMain"> ReceivingAreasSAMain </a> </td> <td> ReceivingAreasSAMain </td> </tr> <tr class="odd"> <td> <a href="/tables/11930" title="ReceivingAreasSAParameter"> ReceivingAreasSAParameter </a> </td> <td> ReceivingAreasSAParameter </td> </tr> <tr class="even"> <td> <a href="/tables/11940" title="ReceivingAreasSA54"> ReceivingAreasSA54 </a> </td> <td> ReceivingAreasSA54 </td> </tr> <tr class="odd"> <td> <a href="/tables/11938" title="ReceivingAreasLSA"> ReceivingAreasLSA </a> </td> <td> ReceivingAreasLSA </td> </tr> <tr class="even"> <td> <a href="/tables/11942" title="ReceivingAreasSASA"> ReceivingAreasSASA </a> </td> <td> ReceivingAreasSASA </td> </tr> <tr class="odd"> <td> <a href="/tables/11937" title="ReceivingAreasSALSAPredecessor"> ReceivingAreasSALSAPredecessor </a> </td> <td> ReceivingAreasSALSAPredecessor </td> </tr> <tr class="even"> <td> <a href="/tables/11935" title="Agglomerations"> Agglomerations </a> </td> <td> Agglomerations </td> </tr> <tr class="odd"> <td> <a href="/tables/11929" title="UWWTPs"> UWWTPs </a> </td> <td> UWWTPs </td> </tr> <tr class="even"> <td> <a href="/tables/11941" title="UwwtpAgglos"> UwwtpAgglos </a> </td> <td> UwwtpAgglos </td> </tr> <tr class="odd"> <td> <a href="/tables/11932" title="DischargePoints"> DischargePoints </a> </td> <td> DischargePoints </td> </tr> <tr class="even"> <td> <a href="/tables/11943" title="MSLevel"> MSLevel </a> </td> <td> MSLevel </td> </tr> <tr class="odd"> <td> <a href="/tables/11936" title="Industries"> Industries </a> </td> <td> Industries </td> </tr> </tbody> </table> <h2 id="versions"> Other versions </h2> <table class="datatable results"> <col style="width:25%"/> <col style="width:25%"/> <col style="width:25%"/> <col style="width:25%"/> <thead> <tr> <th>Dataset number</th> <th>Status</th> <th>Release date</th> <th></th> </tr> </thead> <tbody> <tr class="odd"> <td>3485</td> <td>Released</td> <td title="31 August 2021 13:10:53">31 August 2021</td> <td> [<a href="/datasets/3485">view</a>] </td> </tr> <tr class="even"> <td>3458</td> <td>Released</td> <td title="31 August 2020 10:34:16">31 August 2020</td> <td> [<a href="/datasets/3458">view</a>] </td> </tr> <tr class="odd"> <td>3381</td> <td>Released</td> <td title="01 August 2018 11:34:57">01 August 2018</td> <td> [<a href="/datasets/3381">view</a>] </td> </tr> <tr class="even"> <td>3194</td> <td>Released</td> <td title="18 July 2016 09:59:27">18 July 2016</td> <td> [<a href="/datasets/3194">view</a>] </td> </tr> </tbody> </table> </div> <!-- end dotted --> <!-- various hidden inputs --> <div style="display:none"> <input type="hidden" name="mode" value="view"/> <input type="hidden" name="check_in" value="false"/> <input type="hidden" name="changed" value="0"/> <input type="hidden" name="complete" value="false"/> <input type="hidden" name="saveclose" value="false"/> <input type="hidden" name="submitter_url" value="dataset.jsp"/> </div> </form> </div> <!-- workarea --> </div> <!-- container --> <div id="pagefoot"> <p> <a href="/documentation/doc1">Disclaimer</a> | Copyright: <a rel="license" href="https://creativecommons.org/licenses/by/2.5/dk/deed.en_GB" title="Creative Commons Attribution License"> <img alt="Creative Commons Attribution License" src="https://i.creativecommons.org/l/by/2.5/dk/80x15.png" /></a> | <a href="mailto:ServiceDesk@eea.europa.eu?subject=Feedback from the Data Dictionary website">Feedback</a> </p> <p> <a href="http://www.eea.europa.eu">European Environment Agency</a> <br/>Kgs. Nytorv 6, DK-1050 Copenhagen K, Denmark </p> </div> <script type="text/javascript"> var contextPath = ""; </script> <script type="text/javascript" src="/popbox.js"></script> <script type="text/javascript"> // <![CDATA[ var popclickpop = { 'onclick' : function() { Pop(this,-50,'PopBoxImageLarge'); }, 'pbShowPopBar' : false, 'pbShowPopImage' : false, 'pbShowPopText' : false, 'pbShowRevertImage': true, 'pbShowPopCaption' : true }; PopRegisterClass('poponmouseclick', popclickpop); popBoxShowPopBar = false; // ]]> </script> </body> </html>