// JavaScript Document
function UFNpopup(fileurl, windowname, w, h) {
	win = window.open(fileurl, windowname, "toolbar=0,scrollbars=0,status=0,menubar=0,resizable=yes,width="+w+",height="+h+",location=0,top=90,left=210");
	win.focus();
	return false;
}

function popupCompose(author, subject) {
	//alert (author + subject);
	return UFNpopup("/ftmail/compose.php?popup=1&to_username="+author+"&subject=RE: "+subject, "compose", 460, 350);
}

function popupEmail(id, subject) {
  return UFNpopup("/send_post.php?popup=1&id="+id+"&subject="+subject, "compose", 460, 350);
}
