/*
+----------------------------------------------------------------+
|																							                   |
|	WordPress Plugin: Collapsible Comments    								     |
|	http://deuced.net/wpress/collapsible-comments/						     |
|																                    						 |
|	File Information:																	             |
|	- Collapsible Comments Javascript  												     |
|	- wp-content/plugins/collapsible-comments/ccomments.js         |
|                                                                |
| This code is based on Arvind Satyanarayan example which        |
| toggles the visibility of multiple  elements on a page         |
|                                                                |
| http://blog.movalog.com/a/javascript-toggle-visibility/        |
|																							                   |
+----------------------------------------------------------------+
*/
function xcollapse(id) 
{ 
	var element = document.getElementById(id); 
    if(element != null) 
    { 
    	if(element.style.display == 'block') element.style.display = 'none'; 
    	else element.style.display = 'block';      
	} 
}