/* ================================================================ 
No need to edit this script. Script created by umesh khiwal.
=================================================================== */


function bsl_autoshow(id)
{
	var ids=document.getElementById('expand').value;

	arr=ids.split(',');
	for(i=0;i<arr.length;++i)
	{
		document.getElementById(arr[i]).className="hide";
		document.getElementById('span'+arr[i]).innerHTML='<a href="javascript:bsl_autoshow(\''+arr[i]+'\')">click here to expand</a>';
	}
	document.getElementById(id).className="show";

	document.getElementById('span'+id).innerHTML='<a href="javascript:bsl_autohide(\''+id+'\')">hide</a>';
	
}

function bsl_autohide(id)
{
	document.getElementById(id).className="hide";
	document.getElementById('span'+id).innerHTML='<a href="javascript:bsl_autoshow(\''+id+'\')">click here to expand>></a>';
}
