function show_hide_attach(action,i,type)
{
	if(action=='show')
	{
		if(i=="all")
		{
			document.getElementById('all_types_of_attachments').style.display="inline";
		}
		
		document.getElementById('show_hideall').innerHTML="<div><a href=javascript:show_hide_attach(\"hide\",'"+i+"','"+type+"')><img src='images/menu/minus.jpg' border=0></div>";
	}
	if(action=='hide')
	{
		if(i=="all")
		{
			document.getElementById('all_types_of_attachments').style.display="none";
		}
		
		document.getElementById('show_hide'+i).innerHTML="<div><a href=javascript:show_hide_attach(\"show\",'"+i+"','"+type+"')><img src='images/menu/plus.jpg' border=0></div>";

	}

}
