//See index-TEST, combination of scripts 1. and 2.//
function HideDiv() { test1.style.display='none', test2.style.display='none' }
function toggle(element)
 {document.getElementById(element).style.display = (document.getElementById(element).style.display == "none") ? "" : "none";}

