/*
<CUSTOM>

@description JS functions for use in applications/account (and discussion)

@author	Bryan Gullan
@created 2005-10-18

@dependsOn 
@basedOn 

@modified

*/

function togglehelp(divid){
	div=document.getElementById(divid);
	if(div.style.display=='none'){
		div.style.display='block';
	}else{
		div.style.display='none';
	}
}
