/* Page produced by "WLGenerate" on 13th February 2009*/

function showHide(ident)
    {
    block = self.document.getElementById(ident + 'alt');
    if (block.className == "showtext")
        block.className = "hidetext";
    else
        block.className = "showtext";
    block = self.document.getElementById(ident);
    if (block.className == "showtext")
        block.className = "hidetext";
    else
        block.className = "showtext";
    }


