﻿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 snow(url,newwin,coords) {
window.open(url,newwin,coords);
}

function hideAll(c,d,e) {
for (i=c;i<=d;i++)
{ HideContent(e + i); }
}

function newpos(d,newLeft,newTop) {
var oTarget = document.getElementById(d);
    oTarget.style.left = newLeft + 'px';
    oTarget.style.top = newTop + 'px';
    oTarget.style.display = "block";
}
