
function showChildren_dp(id)
{
	
	try
	{
		document.getElementById(id).style.display = "";
	}
	catch(err)
	{
	//Handle errors here
	}  
	
}// showChildren_dp


function hideChildren_dp(id)
{	
 
	try
	{
		document.getElementById(id).style.display = "none";
	}
	catch(err)
	{
	//Handle errors here
	}  
 
 
 
}// hideChildren_dp