blob: 6c2be182300b6df2945b950eeba36e15be895564 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
function showLoad(){
var paragraph = document.getElementById("running");
var text = document.createTextNode("Running Test, Please wait for Results");
paragraph.appendChild(text);
var div = document.getElementById("upload");
if (div.style.display !== 'none') {
div.style.display = 'none';
}
}
function toggleAbout(){
var x = document.getElementById("about");
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}
|