function openWindow(url) {
	newWindow = window.open(url, 'secnav', 'width=370,height=500,toolbar=no,location=no,scrollbars=yes,resizable=no,directories=no,status=no,menubar=no,')
	newWindow.focus()
	}

function openSizing(url) {
	newSizing = window.open(url, 'sizing', 'width=580,height=675,toolbar=no,location=no,scrollbars=auto,resizable=yes,directories=no,status=no,menubar=no,')
	newSizing.focus()
	}

function noSpam(user,domain) {
	locationstring = "mailto:" + user + "@" + domain;
	window.location = locationstring;
	}

/*
  This code is from Dynamic Web Coding at http://www.dyn-web.com/
  See Terms of Use at http://www.dyn-web.com/bus/terms.html
  Permission granted to use this code 
  as long as this entire notice is included.
*/

function changeContent(id,shtml) {
	if (document.getElementById || document.all) {
		var el = document.getElementById? document.getElementById(id): document.all[id];
		if (el && typeof el.innerHTML != "undefined") el.innerHTML = shtml;
		}
	}
