// JavaScript Document

var curDiv = '';

function ShowContent(show){

if(curDiv != '')

HideContent(curDiv);

document.getElementById(show).style.visibility = "visible";

curDiv = show;

}

function HideContent(hide){

document.getElementById(hide).style.visibility = "hidden";

}
