var content1, content2;
var bodycontent;
content2 = "<h1 align=\"center\">AARGH! ZOMBIE ATTACK!</h1>\n";
content2 += "<br />\n<br />\n";
content2 += "<h3 align=\"center\">You've been attacked by Pete, the Invisible Space Zombie!</h3>";
content2 += "<br />\n<br />\n<br />\n<br />\n";
content2 += "<p>Pete is our security officer. He's also very lazy. You should take it as an honor that he attacked you. It's a very rare occurance.</p>";
content2 += "<br />\n<br />\n<br />\n<br />\n";
content2 += "<p>That asside, you probably want to get back to whatever page you were looking at now.</p>";
content2 += "<p>To do that, Just click <u onclick=\"seepage()\">here</u>";

function zombie() {
    bodycontent = document.getElementById('content');
    randnum = Math.floor(Math.random()*201);
    if(randnum == 0) {
        content1 = bodycontent.innerHTML;
        bodycontent.innerHTML = content2;
    } else {
        //
    }
}

function seepage() {
   bodycontent.innerHTML = content1;
}