// used to show more or less
function showMoreorless(suffix, full)
{
if (full) {
showform('more'+suffix);
hideform('less'+suffix);
}
else {
showform('less'+suffix);
hideform('more'+suffix);
}
}
