function SOHconfirmation() {
    alert("You are being re-directed to a non Lee County Property " +
	    "Appraiser Web site. This site has been created for " +
		"the purpose of collecting signatures for the Save Our Homes " +
		"Portability Petition.");
	window.open("http://www.homekeys.net/SaveOurHomes");
	}
	
function lastModifiedDate()
{
    document.writeln("This page was last updated on " + document.lastModified.substring(0,10));
}

function openGisWindow()
{
	var windowOptions, windowHeight, windowWidth;

	windowWidth = screen.availWidth;
	windowHeight = screen.availHeight;
	
	if (windowHeight > 1200)
	{
		windowWidth = 1600;
		windowHeight = 1200;
	}

	if (navigator.appName == 'Netscape')
	{
		windowOptions = 'screenX=0,screenY=0,outerWidth=' + windowWidth + ',outerHeight=' + windowHeight + ',menubar=no,titlebar=yes,scrollbars=no,status=yes,toolbar=no,location=no,directories=no';
		
		if (parseFloat(navigator.appVersion) >= 5)
		{
			windowOptions += ',resizable=yes';
		}
		else
		{
			windowOptions += ',resizable=no';
		}
	}
	else
	{
		if (navigator.userAgent.indexOf("Win") != -1)
		{
			windowHeight -= 64;
			windowWidth -= 10;
	
			windowOptions = 'left=0,top=0,width=' + windowWidth + ',height=' + windowHeight + ',menubar=no,resizable=no,titlebar=yes,scrollbars=no,status=yes,toolbar=no,location=no,directories=no';
		}
		else
		{
			windowOptions = 'left=0,top=0,width=' + windowWidth + ',height=' + windowHeight + ',menubar=no,resizable=no,titlebar=yes,scrollbars=no,status=yes,toolbar=no,location=no,directories=no';
		}
	}

	window.open('http://gis.leepa.org/', 'GISWindow', windowOptions);
}

function openAerialWindow()
{
	window.open("maintenMsgPageAerial.htm","AerialWindow","height=120,width=500");
}

