<!--
// javascript include

function OpenConstantContact()
{
	var ea = document.getElementById('ea').value;
	
	if(ea.length > 0)
	{		
		window.open("http://visitor.constantcontact.com/d.jsp?go=GO&m=1101891240684&p=oi&ea=" + ea,'','scrollbars=no,menubar=no,height=550,width=800,resizable=yes,toolbar=no,location=no,status=no');
	}
	else
	{
		alert("Please enter your email address.");
		document.getElementById('ea').select();
		document.getElementById('ea').focus();
	}
}

//-->