function InsertContent(tid) {
if(document.getElementById(tid).style.visibility == "visible")
{
document.getElementById(tid).style.visibility = "hidden";
}
else{
document.getElementById(tid).style.visibility = "visible";
}
}
