function promptSignUp(){
	if(confirm('Please sign up or sign in to add this plant to a project.')){
		document.location.href='/sign-up';
		return false;
	} else {
		return false;
	}
}
