/*
Copyright, Woodland Engineering, 2009
For documentation, please request by email from (pardon format, but it's to avoid bots from picking it up).
  mail.kencurtis // AT // gmail // DOT COM //
Please identify yourself and tell us why you want it.
*/
function HHS59GotoTop()
{
self.scrollTo(0,0);
}
function HHS59ShowPhoto
(
individualPhotoRefStr
)
{
var photoRefStr = "../individuals/" + individualPhotoRefStr;
overlib('',BACKGROUND,photoRefStr,FGCOLOR,'',ABOVE);
}
function HHS59ShowReunionForm()
{
var ReunionFormWind = window.open("reunion_form.htm", "reunionform",
"width=740,height=640,resizable=1,menubar=1,scrollbars=1,location=0,directories=0");
blur();
ReunionFormWind.focus();
}
function HHS59ShowVillagesForm()
{
var ReunionFormWind = window.open("villages_reunion_form.htm", "villagesreunionform",
"width=800,height=740,resizable=1,menubar=1,scrollbars=1,location=0,directories=0");
blur();
ReunionFormWind.focus();
}
function HHS59RoommateList()
{
var RoommateWind = window.open("roommates.htm", "roommate",
"width=740,height=640,resizable=1,menubar=1,scrollbars=1,location=0,directories=0");
blur();
RoommateWind.focus();
}
function HHS59HomeHostList()
{
var HomeHostWind = window.open("house_guest.htm","_self");
}
function HHS59SubmitComment()
{
var textAreaElem = document.getElementById("userscmnt");
var cmntStr = new String(textAreaElem.value);
var modifiedStr = new String(cmntStr.replace(/\n/g, "<br/>"));
textAreaElem.value = modifiedStr;
}