/*
<!------------------------------------>
<!--                                -->
<!--  copyright (c) McLellan Print  -->
<!--           2006-2009            -->
<!--       do not redistribute      -->
<!--                                -->
<!------------------------------------>
*/


<!--start screen size change-->
window.onload = function() {
	if(screen.width<=800) {
		document.getElementById('main').className = "mainSmall";
		if(location.href,match(/\/map/) && document.getElementById('map')) {
			document.getElementById('map').width = '333';
			document.getElementById('map').height = '267';
		}
		var d = document.getElementsByTagName('div');
		d[d.length-1].style.height="150px";
	}
}
<!--end screen size change-->

function mail(d, a) {
	a += '@' + d;
	t = (arguments[2])? arguments[2] : a;
	s = '<a href="mailto:'+ a +'">'+ t +'</a>';
	document.write(s);
}