﻿
function openInfoPage() {
	newwindow2=window.open('','name','height=300,width=300');
	var tmp = newwindow2.document;
	tmp.write('<html><head><title>popup</title>');
	tmp.write('<link rel="stylesheet" href="js.css">');
	tmp.write('</head><body><h3>UTM Zones</h3><p>Eastings are measured from the central meridian (with a 500km false easting to insure positive coordinates). Northings are measured from the equator (with a 10,000km false northing for positions south of the equator).UTM Zone 14 .</p>');
	tmp.write('<p><a href="javascript:self.close()">close</a> the popup.</p>');
	tmp.write('</body></html>');
	tmp.close();
}

function openInfoWindow () {

    window.open('info.htm','mywin','left=20,top=20,width=300,height=300,toolbar=1,resizable=0');

}

function toggleItem(layerId) {
   var element = document.getElementById(layerId);
   if (element) {
       element.style.display = (element.style.display=="" || element.style.display=="none") ? "block" : "none";
   }
}