function HideContent(d) {
document.getElementById(d).style.display = "none";
}

function ShowContent(d) {
document.getElementById(d).style.display = "block";
}

function ReverseContent(d) {
if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
else { document.getElementById(d).style.display = "none"; }
}

function hideAll() {
HideContent('id1');
HideContent('id2');
HideContent('id3');
HideContent('id4');
HideContent('id5');
}

function avg80(url,newwin,coords) {
window.open(url,newwin,coords);
}

function paws(){ 
var t=setTimeout("HideContent('id7')",1200)
} 

function pause(){ 
var t=setTimeout("ShowContent('id7')",1200)
}

function changeit() {
if(window.location.search.length > 1 )
{
hu = window.location.search.substring(1);
ShowContent(hu);
}
}