function generate_email(display_text,to_name) {
  display_text = (display_text == to_name) ? to_name+"@justfortheloveofit.org" : display_text;
	document.write("<a href='mailto:"+to_name+"@justfortheloveofit.org' title='Email "+to_name+"@justfortheloveofit.org'>"+display_text+"</a>");
}

function messagesend() {
  document.getElementById('btnSendMessage').disabled=true;
	document.getElementById('btnSendMessage').value='Please wait...';
	document.getElementById('err').innerHTML="<img src='./inviteafriend/images/loader.gif' alt='please wait' />";
	window.setTimeout("document.groupmessagesend.submit()",500);
}

function pleasewaitsubmit(btn_id,form_name) {
  document.getElementById(btn_id).disabled=true;
	document.getElementById(btn_id).value='Please wait...';
	document.getElementById('pleasewait').innerHTML="<img src='./inviteafriend/images/loader.gif' alt='please wait' />";
	window.setTimeout("document."+form_name+".submit()",500);
}

function pleasewaitsubmit2(btn_id) {
  //document.getElementById(btn_id).disabled=true;
	document.getElementById(btn_id).value='please wait';
	//document.getElementById('pleasewait').innerHTML = "<img src='./images/loading.gif' alt='please wait' />";
}
