var helpWindow;

function showHelp(title, helpid) {
	helpWindow=dhtmlwindow.open('divbox', 'div', helpid, title, 'width=400,height=300,center=1,top=100,left=300,resize=1,scrolling=1','recal');
}

function openClose(id) {
  var obj = document.getElementById(id);
  if (obj.style.display == 'none')
    obj.style.display = 'block';
  else
    obj.style.display = 'none';
}

function doLogout() {
  aInput=document.getElementsByName("logout")[0].submit();
}
