// address munger
function lgMRAIXldaUPYFc()
{
	var VxdTRUMqJXtKofl=["x69","110","102","111","x40","x77","97","x6e","121","97","x72","x69","x2e","99","111","x6d","x2e","97","x75"];
	var nyPDvdLsZzTCYJs=[" "];
	var EontuUySOtCgVVH=["x69","x6e","102","111","x40","119","97","x6e","121","x61","114","105","x2e","99","111","x6d","x2e","x61","x75"];
	document.write("<a class=link href=\"&#x6d;&#97;&#000105;&#000108;&#000116;&#x6f;&#58;");
	for (i=0; i<VxdTRUMqJXtKofl.length; i++) document.write("&#"+VxdTRUMqJXtKofl[i]+";");
	for (i=0; i<nyPDvdLsZzTCYJs.length; i++) document.write(nyPDvdLsZzTCYJs[i]);
	document.write("\">");
	for (i=0; i<EontuUySOtCgVVH.length; i++) document.write("&#"+EontuUySOtCgVVH[i]+";");
	document.write('</a>');
}

// ugly popup calendar
<!-- Begin Take A Break Away POP UP Own Site Calendar -->
	function open_window(url) {
		if (window.open){
			var settings = 'toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width=560,height=460';
			mywin = window.open(url,"win",settings);
			window.mywin.focus();
			return false
		}
		else {
			return false
		}
	}


// footer function
		<!--
		function getWindowHeight() {
			var windowHeight = 0;
			if (typeof(window.innerHeight) == 'number') {
				windowHeight = window.innerHeight;
			}
			else {
				if (document.documentElement && document.documentElement.clientHeight) {
					windowHeight = document.documentElement.clientHeight;
				}
				else {
					if (document.body && document.body.clientHeight) {
						windowHeight = document.body.clientHeight;
					}
				}
			}
			return windowHeight;
		}
		function setFooter() {
			if (document.getElementById) {
				var windowHeight = getWindowHeight();
				if (windowHeight > 0) {
					var contentHeight = document.getElementById('content').offsetHeight;
					var footerElement = document.getElementById('footer');
					var footerHeight  = footerElement.offsetHeight;
					if (windowHeight - (contentHeight + footerHeight) >= 0) {
						footerElement.style.position = 'relative';
						footerElement.style.top = (windowHeight - (contentHeight + footerHeight)) + 'px';
					}
					else {
						footerElement.style.position = 'static';
					}
				}
			}
		}
		window.onload = function() {
			setFooter();
		}
		window.onresize = function() {
			setFooter();
		}