function delineate(str)
					{
						var theleft = str.indexOf('=') + 1;
						return(str.substring(theleft));
					}
				
					var locate = window.location;
					document.zcg.email_link.value = locate;
					var text=document.zcg.email_link.value;
					
					var status=delineate(text);
				
					if(status=='ERROR'){
						alert("Sorry. There was an error. Please try again.");
					}
					else if (status=='INVALID_CAPTCHA'){
						alert("Sorry. The captcha solution entered was invalid or empty!");
					}	
					else if(status=='SUCCESS'){
						alert("Thank you for the submission. We'll contact you soon.");
					}
