// JavaScript Document
function popwindow(url, width, height){
	newwindow=window.open(url,'name','height=' + height + ',width=' + width + ',status=0,toolbar=0,location=0,status=0,scrollbars=1,resizable=1');
	if (window.focus) {newwindow.focus()}
}
function printer() {
	document.getElementById('foot').style.visibility = 'hidden';
	window.print()
	document.getElementById('foot').style.visibility = 'visible';
}
function validate() {
	if(!isEmail(document.forms['ccoptin'].elements['ea'].value)){
		alert("Valid email required");
		document.forms['ccoptin'].elements['ea'].value = "";
		document.forms['ccoptin'].elements['ea'].focus();
		return false;
	}
	popSubmit();
	return true;
}
function popSubmit() {
	var email = document.forms['ccoptin'].elements['ea'].value;
	var url = "http://visitor.constantcontact.com/optin.jsp?m=1101229959686&ea=" + email;
	window.open(url, "ccwin", 'height=500px,width=575px,status=0,toolbar=0,location=0,scrollbars=yes,resizable=no');
}
function escramble() {
	var a='<a href=\"mai', b='info_', c='\">', e='</a>', f='', g='<img src=\"', h='', i='\" alt="Email us." border="0">';
	a+='lto:';
	b+='@';
	b+='cwknetwork.com';
	if (f) {
		d=f;
	}
	else if (h) {
		d=g+h+i;
	}
	else {
		d=b;
	}											
	document.write(a+b+c+d+e)
}