function email(user) {
	var agree=confirm("IMPORTANT NOTICE\n\nPlease be advised that sending an unsolicited electronic mail message to us does NOT create an attorney-client relationship between you and the Wilford & Geske law firm or its attorneys.  Therefore, we have no duty or obligation to keep any information you have provided to us in your unsolicited contact as confidential.  Similarly, you should not expect that we will take any action with respect to any legal issues you may have until you have entered into a written engagement agreement with our firm.\n\nIf you seek legal representation, please call one of our attorneys directly, or call our main line at 651-209-3300.\n\nIf you understand and agree with these terms, please click on the \"OK\" button to send us an email.  Otherwise, please click \"Cancel.\"");

	if (agree){
		location.href=('mailto:' + user + '@wilfordgeske.com');
	}
	else{
		// do nothing...
		return false ;
	}
}
