recipientCount=1;function addRecipient(){var recipients=document.getElementById("recipients");var row=document.createElement("ul");row.innerHTML="<li><strong>Name:</strong></li>"+"<li><input type=\"text\" name=\"invitees["+recipientCount+"][to_name]\" value=\"\" /></li>"+"<li><strong>Email:</strong></li>"+"<li><input type=\"text\" name=\"invitees["+recipientCount+"][to_address]\" value=\"\" /></li>";recipients.appendChild(row);recipientCount++}
function addSchoolRecipient(){var recipients=document.getElementById("recipients");var row=document.createElement("ul");row.innerHTML="<li class=\"recipientTextItem recipientName\"><strong>Name:</strong></li>"+"<li class=\"recipientInputItem\"><input type=\"text\" name=\"invitees["+recipientCount+"][to_name]\" value=\"\" /></li>"+"<li class=\"recipientTextItem\"><strong>Email:</strong></li>"+"<li class=\"recipientInputItem\"><input type=\"text\" name=\"invitees["+recipientCount+"][to_address]\" value=\"\" /></li>";recipients.appendChild(row);recipientCount++}
function doHighlight(id,flag){var e=document.getElementById(id);if(e!=null&&id!=null&&flag!=null){var checked=document.getElementById(id=='shareProfile'?'profile':'group').checked;if(flag){e.style.background='#eef3f9';}
else if(!checked){e.style.background='';}}}
function doCheck(id){var e=document.getElementById(id=='shareProfile'?'shareGroup':'shareProfile');var groupsList=document.getElementById('groupsList');if(e!=null&&groupsList!=null){e.style.background='';if(id=='shareProfile'){groupsList.selectedIndex=-1;}
else if(groupsList.selectedIndex==-1){groupsList.selectedIndex=0;}}
if(document.getElementById('bannerText')!=null){document.getElementById('bannerText').value=(id=='shareProfile'?"Check out my profile at CafeMom":"Check out my group at CafeMom");}
document.getElementById('hidden').style.display="block";}