function ClearAspTree()
{
//alert(document.all('__VIEWSTATE').value.length);
//	var oAll = document.all;
//	var i=0;
//	var n = oAll.length;document.getElementByName
	
	e=document.all('hodohodo')
	if (e != null)
	{
	e.previousSibling.previousSibling.style.display = "none";
	}
//	x=document.all('_ctl0_xhodohodo')
//	if (x != null)
//	{
//	x.previousSibling.previousSibling.style.display = "none";
//	}
//	y=document.all('_ctl0__ctl0_hodohodo')
//	if (y != null)
//	{
//	y.previousSibling.previousSibling.style.display = "none";
//	}

}

function resizeWin() 
{ 
if (document.all) { 
winHeight=document.all['bodyArea'].offsetHeight; 
winWidth=document.all['bodyArea'].offsetWidth; 
} 
// add 30 to the width for a border 
// add 60 to the height to account for a border + the titlebar 
if (winWidth>1000)
{
winWidth=1000;
}
if (winHeight>1000)
{
winHeight=1000;
}
window.resizeTo(winWidth,winHeight); 

//centre the window 
if (window.moveTo) window.moveTo((screen.availWidth-winWidth)/2,((screen.availHeight-winHeight)/2)+130); 
}
function CallPrint(strid)
{
 var prtContent = document.getElementById(strid);
 var WinPrint = window.open('','','letf=0,top=0,width=1,height=1,toolbar=0,scrollbars=0,status=0');
 WinPrint.document.write(prtContent.innerHTML);
 WinPrint.document.close();
 WinPrint.focus();
 WinPrint.print();
 WinPrint.close();
 //prtContent.innerHTML=strOldOne;
}