
var count=0;
var z = 100;

function HideContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "none";
count=count-25;
}

function ShowContent(d,h) {
if(d.length < 1) { return; }
var dd = document.getElementById(d);

//alert(count);

dd.style.left = 61-count+'px';
dd.style.top = count+'px';
dd.style.display = "block";
dd.style.zIndex = z++;
count=25+count;
}

function zindexit(d) {
if(d.length < 1) { return; }
var dd = document.getElementById(d);
dd.style.zIndex = z++;
}
