function sendEmail(obj) {
	var tempString = "";
	for(var i in obj) {
		tempString += (i + " = " + obj[i] + "\n");
	}
	alert(tempString);
}
