var withBreaks = "friend1@example.com \nfriend2@example.com \nfriend3@example.com";
function print() {
	document.getElementById("invite").value=withBreaks;
}

function blurtextarea(obj) {
	obj.id == "invite";
		if ((obj.value == "") || (obj.value == withBreaks)) {
			obj.style.color = "#a4a4a4";
			obj.value = withBreaks;
		}
}

function focustextarea(obj) {
	if ((obj.id == "invite") && (obj.value == withBreaks)) {
		obj.style.cursor = "default";
		obj.value = "";
		obj.style.color = "#333333";
	}
}
