// JavaScript Document

function showHide(id)
{	
	if (document.getElementById(id).style.display == 'none')
	{
		document.getElementById(id).style.display = 'block';
	}
	else
	{
		document.getElementById(id).style.display = 'none';	
	}
}

/*added on 01-01-09 for Nested gridview Collaps and expand*/
function expandcollapse(obj, row) {

	var div = document.getElementById(obj);
	var img = document.getElementById('img' + obj);
if(document.getElementById(obj)!=null )
{
	if (div.style.display == "none") 
	{
		div.style.display = "block";
		if (row == 'alt') 
		{
			img.src = "_images/minus.gif";
		}
		else 
		{
			img.src = "_images/minus.gif";
		}
		///img.alt = "Close to view of Projects";
	
	}
	else 
	{
		div.style.display = "none";
		if (row == 'alt')
		 {
			img.src = "_images/plus.gif";
		}
		else 
		{
			img.src = "_images/plus.gif";
		}
		//img.alt = "Expand to show Projects";
	}
	}
} 
