self.document.write('<script type="text/javascript" > function toggle_show (divid) { var the_div = document.getElementById(divid); if (the_div.style.display == \'block\') { the_div.style.display = \'none\'; } else { the_div.style.display = \'block\'; } return } function switchArticle (link) { var parent = link.parentNode; var summary; var article; var children = parent.childNodes; for (var i=0; i < children.length; i++) { var node = children[i]; if (node.nodeName==\'P\' && ! summary) { summary = node; } if (node.nodeName==\'DIV\' && ! article) { article = node; } } if (article.style.display==\'none\') { link.innerHTML=\'Hide article\'; article.style.display=\'block\'; if (summary) { summary.style.display=\'none\'; } } else { link.innerHTML=\'Show article\'; article.style.display=\'none\'; if (summary) { summary.style.display=\'block\'; } } return false; } </script> <div style="margin : 0px; width : auto; height : auto; border : solid 0px; overflow : hidden; font-size : 12px; font-family : \'Arial\'; color : black; background : inherit;"> <div style="padding : 3px;" > <ul style="margin : 0px; padding-left : 15px"> </ul> </div> </div>');
