function DG_hss(objToProcess, status)
{
	document.getElementById(objToProcess).style.display=status;
}
/////////////////////////////////////////////////////////////////
function FadeInFadeOut(ElementName)
{
	vis = $('#'+ElementName).css("visibility");
	if(vis == "visible")
	{	
		$('#'+ElementName).hide(200);
		//$('#'+ElementName).fadeOut(0);
		$('#'+ElementName).css('visibility','hidden');
	}
	else
	{
		//$('#'+ElementName).fadeIn(200);
		$('#'+ElementName).show(200);
		$('#'+ElementName).css('visibility','visible');
	}
	//$('#'+ElementName).fadeIn(200);
	//DG_hss(ElementName, "block")
	/*
	if(document.getElementById(ElementName).style.display == 'none') 
	{     
	document.getElementById(ElementName).style.display = 'block'; 
	} 
	else 
	{
	document.getElementById(ElementName).style.display = 'none';
	}
	*/
}
