// JavaScript Document
function HideContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "none";
}
function ShowContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "block";
}
function openWin(winName) {
	mapWindow = window.open(winName,'newWin','toolbar=no,location=no,scrollbars=yes,width=725,height=600,resizable');
}

function openWin2(winName) {
	mapWindow = window.open(winName,'newWin','toolbar=no,location=no,scrollbars=yes,width=400,height=256,resizable');
}

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-4093774-1']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
