// © 2009 ArattaUna Communications 
// http://www.arattauna.com/ 
// http://www.arattadesign.com/ 
// http://www.arattasoftware.com/ 
// http://www.siteius.com/ 

// Collapsible Panel
function CollapsiblePanel(paremtid)
{
	var cp = document.getElementById (paremtid);
	lastDirectory = paremtid;
	if (cp) cp.style.display = cp.style.display == 'none' ? 'block' : 'none';
}
// CollapsiblePanel //