function define_Recipient(type){
	var topic = type;
	var topic_email = "dl_ctctlabs@constantcontact.com";

	try{
		if(typeof topic == "undefined" || topic == null){
			return;
		}
		else{
			if(topic.options[topic.selectedIndex].value == ""){
				alert("You must choose a topic");
				return false;
			}
			else if(topic.options[topic.selectedIndex].value == "question"){
				topic.options[topic.selectedIndex].value = topic_email; 
			}
			else if(topic.options[topic.selectedIndex].value == "bug"){
				topic.options[topic.selectedIndex].value = topic_email; 
			}
			else if(topic.options[topic.selectedIndex].value == "project"){
				topic.options[topic.selectedIndex].value = topic_email; 
			}
			else{
				//do nothing
			}
		}
	}
	catch(e){
		//do nothing
	}
}
