Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
var f = document.forms[0];
var specialRm = f.RoomSelection.options[f.RoomSelection.selectedIndex].text;
var chkIndex = specialRm.indexOf('(*)'); //Some of the options contain (*) therefore indexOf('(*)') is used.
if (chkIndex !== -1)
{
f.CoBrochures.style.visibility = 'visible';
for (i = 0; i < f.SpecialArrangements.length; i++)
{
f.SpecialArrangements[i].style.visibility = 'visible'; //Checkbox
}
f.OtherArrangement.style.visibility = 'visible';
for (i = 0; i < f.VideoLanguage.length; i++)
{
f.VideoLanguage[i].style.visibility = 'visible';
}
}
else
{
f.CoBrochures.style.visibility = 'hidden';
for (i = 0; i < f.SpecialArrangements.length; i++)
{
f.SpecialArrangements[i].style.visibility = 'hidden';
}
f.OtherArrangement.style.visibility = 'hidden';
for (i = 0; i < f.VideoLanguage.length; i++)
{
f.VideoLanguage[i].style.visibility = 'hidden'; //Radio
}
}