var baseURL = "/ajax/";

function validateEmail(email, msg, optional) {
	if (!email.value && optional) {
		return true;
	}
	var re_mail = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z])+$/;
	if (!re_mail.test(email.value)) {
	alert("Please enter a valid email address");
	return false;
	}
	
	return true;
}

function getBrochure(email,projectid)
{
	//log the result
	$.get(baseURL+"getBrochure.cfm",{email:email,projectid:projectid},
		function(data)
		{
			$('#orgprompt').hide();
			$('#downloadbrochurehref').attr('href',data);
			$('#downloadbrochurehref').show();
			$('#emaildevice').hide();
		}
	)
		
}








