CINXE.COM

Dataset - WISE SoE - Water Quantity

<!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 - WISE SoE - Water Quantity</title> <script type="text/javascript" src="/modal_dialog.js"></script> <script type="text/javascript"> // <![CDATA[ function linkDataset(checkedoutCopyId){ var url="datasets.jsp?ctx=popup&regStatus=Released,Candidate,Recorded,Qualified&regStatusFilter=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="3223"/> </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&amp;obj_type=DST&amp;obj_id=3223&amp;out_type=GDLN" class="pdf" onclick="return warnDatasetStatus('Released', 'download')"> Create technical specification for this dataset </a> </li> <li> <a rel="nofollow" href="/GetSchema?id=DST3223" class="xsd"> Create an XML Schema for this dataset - version 1 </a> </li> <li> <a rel="nofollow" href="/GetXls?obj_type=dst&amp;obj_id=3223&amp;new_schema=false" class="excel" onclick="return warnDatasetStatus('Released', 'download')"> Create an MS Excel template for this dataset - version 1 </a> <a class="helpButton" href="/help.jsp?screen=dataset&amp;area=excel"></a> </li> <li> <a rel="nofollow" href="/codelists/datasets/3223/csv" class="csv">Get the comma-separated codelists of this dataset</a> </li> %> <li> <a rel="nofollow" href="/codelists/datasets/3223/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&amp;area=identifier"></a> </th> <td class="simple_attr_value"> <b>WISE-SoE_WaterQuantity</b> <input type="hidden" name="idfier" value="WISE-SoE_WaterQuantity"/> </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&amp;area=short_name"></a> </th> <td class="short_name_value"> WISE SoE - Water Quantity <input type="hidden" name="ds_name" value="WISE SoE - Water Quantity"/> </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&amp;area=regstatus"></a> </th> <td class="simple_attr_value"> Released <span>07 June 2022</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&amp;area=refurl"></a> </th> <td class="simple_attr_value"> <small><a href="http://dd.eionet.europa.eu/datasets/latest/WISE-SoE_WaterQuantity">http://dd.eionet.europa.eu/datasets/latest/WISE-SoE_WaterQuantity</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&amp;attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> WISE SoE - Water Quantity (WISE-3) <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"> Keywords <a class="helpButton" href="/help.jsp?attrid=5&amp;attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> Water, water quantity <input type="hidden" name="oblig_5" 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"> Short Description <a class="helpButton" href="/help.jsp?attrid=15&amp;attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> Data on water quantity. <input type="hidden" name="oblig_15" 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"> Definition <a class="helpButton" href="/help.jsp?attrid=4&amp;attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> Data on freshwater resources, water abstraction and water use at regional level, reported by countries within the WISE-SoE reporting. <input type="hidden" name="oblig_4" 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"> Methodology for obtaining data <a class="helpButton" href="/help.jsp?attrid=17&amp;attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> OVERVIEW:<br/><br/>1. Coverage and reference periods<br/><br/>Submit data collected up to the end of the previous year (e.g. in 2015, submit data collected until the end of 2014).<br/><br/>2. Data content<br/><br/>Provide time series of water quantity data for as many parameters as possible.<br/><br/>3. Spatial reference data<br/><br/>The time series reported under the WISE SoE Water Quantity data flow must be linked to a monitoring site or to spatial unit, using a unique identifier. The location, identification and characteristics of the spatial objects must be provided via the WISE Spatial data flow.<br/><br/>If a monitoring site or spatial unit is reported also under the WFD, then use the WFD identifier as the unique identifier.<br/><br/>During the quality control procedures of the data reported under the WISE SoE Water Quantity, the consistency of these identifiers will be checked against the spatial data already reported. (Please note that the spatial data does not have to be reported annually. However, updates to the spatial data (e.g. new monitoring sites, changes in the identifiers, etc.) should be reported. <br/><br/>4. Spatial coverage and spatial resolution<br/><br/>For spatially aggregated data (reported in the RenewableFreshwaterResources, AdditionalWaterResources, WaterAbstraction, WaterUse and WaterReturns tables), the information can be reported at different spatial resolutions:<br/>- River basin district sub-unit (SU);<br/>- River basin district (RBD);<br/>- Country.<br/><br/>Please report at the highest spatial resolution available (i.e. SU-level data is prefered to RBD-level data, RBD-level data is prefered to country-level data).<br/><br/>Please guarantee a full coverage of the territory. <br/>For example, if data is only available for some of the river basins districts, then report that data at RBD level and include also the country-level data.<br/>(If data is reported for all of the RBDs, then there is no need to include the country-level aggregated data.)<br/><br/>5. Temporal coverage and temporal resolution<br/><br/>The information can be reported at different temporal resolutions:<br/>- Monthly;<br/>- Quarterly;<br/>- Annual.<br/><br/>The quarterly resolution is separated into 4 calendar quarters:<br/>Q1: January to March<br/>Q2: April to June<br/>Q3: July to September<br/>Q4: October to December<br/><br/>Please report at the highest temporal resolution available (i.e. monthly data is prefered to quarterly data, quarterly data is prefered to annual data).<br/><br/>Please guarantee a full-year coverage. <br/>For example, if data is only available for some of the months, then report those monthly values and include also the annual value.<br/>(If data is reported for the 12 months, then there is no need to include the annual value.)<br/><br/>Note that daily streamflow data can also be reported in the MonitoringData table.<br/><br/>6. Decimal separators and precision of the reported data<br/><br/>Use a decimal point &#039;.&#039; as the decimal separator. Do not use a comma &#039;,&#039;.<br/><br/>7. Other recommendations<br/><br/>Use the &#039;Remarks&#039; field to provide additional expert information (e.g. what was the calculation method used) or flag specific records. This is very useful during the data quality control process.<br/><br/>8. Reporting format and delivery<br/><br/>Use the reporting templates (MS Excel or XML schemas) and these specifications when formatting and collating the data delivery. The templates can be downloaded from the data dictionary.<br/><br/>Data can be delivered in XML files or in MS Excel file format. Please do not use formulas in MS Excel files and do not rename the worksheets or column names. The file name can be renamed.<br/><br/>Delivery can be split into a multiple files if necessary. All the files must, however, be uploaded to the same envelope.<br/><br/>Upload the data files to the Central Data Repository at <a href="http://cdr.eionet.europa.eu/">http://cdr.eionet.europa.eu/</a>.<br/><br/>A WISE SoE Water Quantity folder will be created by the EEA under your country&#8217;s collection.<br/><br/>Further documentation is available at <a href="http://cdr.eionet.europa.eu/help/WISE_SoE/wise3">http://cdr.eionet.europa.eu/help/WISE_SoE/wise3</a>.<br/><br/>If you have any questions about the format and content of the data request please contact WISE-SoE helpdesk, e-mail: wisesoe.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="even"> <th scope="row" class="scope-row simple_attr_title"> Planned updating frequency <a class="helpButton" href="/help.jsp?attrid=18&amp;attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> 1 year <input type="hidden" name="oblig_18" 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"> Version <a class="helpButton" href="/help.jsp?attrid=39&amp;attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> November 2015 <input type="hidden" name="oblig_39" 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"> Owner (Accountable) <a class="helpButton" href="/help.jsp?attrid=61&amp;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="odd"> <th scope="row" class="scope-row simple_attr_title"> Responsible <a class="helpButton" href="/help.jsp?attrid=62&amp;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 --> <tr class="even"> <th scope="row" class="scope-row simple_attr_title"> Reporting obligation <a class="helpButton" href="/help.jsp?attrid=60&amp;attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> <input type="hidden" name="oblig_60" value="O"/> </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/WaterQuantity_DataModel_simplified_20151130.png"><img src="/visuals/WaterQuantity_DataModel_simplified_20151130.png" 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/9707" title="Monitoring Data"> Monitoring Data </a> </td> <td> MonitoringData </td> </tr> <tr class="even"> <td> <a href="/tables/9708" title="Reservoir Data"> Reservoir Data </a> </td> <td> ReservoirData </td> </tr> <tr class="odd"> <td> <a href="/tables/9721" title="Renewable Freshwater Resources"> Renewable Freshwater Resources </a> </td> <td> RenewableFreshwaterResources </td> </tr> <tr class="even"> <td> <a href="/tables/9722" title="Additional Water Resources"> Additional Water Resources </a> </td> <td> AdditionalWaterResources </td> </tr> <tr class="odd"> <td> <a href="/tables/9446" title="Water Abstraction"> Water Abstraction </a> </td> <td> WaterAbstraction </td> </tr> <tr class="even"> <td> <a href="/tables/9447" title="Water Use"> Water Use </a> </td> <td> WaterUse </td> </tr> <tr class="odd"> <td> <a href="/tables/9734" title="Water Returns"> Water Returns </a> </td> <td> WaterReturns </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>

Pages: 1 2 3 4 5 6 7 8 9 10