// JavaScript Document

// popup scripts
<!--
function popuprating()
{window.open('/popup-rating.html', '', 'width=400,height=500,resizable=0,status=0,scrollbars=0');}
//-->
<!--
function popupwid()
{window.open('/popup-widget.html', '', 'width=176,height=179,resizable=0,status=0,scrollbars=0');}
//-->
<!--
function popupgad()
{window.open('/popup-gadget.html', '', 'width=176,height=179,resizable=0,status=0,scrollbars=0');}
//-->
<!--
function popupext()
{window.open('/popup-extraction.html','','width=176,height=179,resizable=0,status=0,scrollbars=0');}
//-->
<!--
function popuppdf()
{window.open('/popup-pdf.html','','width=176,height=275,resizable=0,status=0,scrollbars=0');}
//-->
<!--
function popupfeeds()
{window.open('/popup-feeds.html','','width=176,height=132,resizable=0,status=0,scrollbars=0');}
//-->
<!--
function popupexcel()
{window.open('/popup-excel.html','','width=176,height=97,resizable=0,status=0,scrollbars=0');}
//-->
<!--
function popupxml()
{window.open('/popup-xml.html','','width=176,height=85,resizable=0,status=0,scrollbars=0');}
//-->
<!--
function popupcsv()
{window.open('/popup-csv.html','','width=176,height=111,resizable=0,status=0,scrollbars=0');}
//-->
<!--
function popupkml()
{window.open('/popup-kml.html','','width=176,height=85,resizable=0,status=0,scrollbars=0');}
//-->
<!--
function popupesri()
{window.open('/popup-esri.html','','width=176,height=120,resizable=0,status=0,scrollbars=0');}
//-->

// toggler script
<!--
function toggleVis(obj)
{
	var el = document.getElementById(obj);
	if ( el.style.display != 'none' )
	{
		el.style.display = 'none';
	}
	else
	{
		el.style.display = '';
	}
}
-->