function openwin(url,name , width, height, scrollbars) 
{

    var Win = window.open(url,name,'width=' + width + ',height=' + height + ',resizable=0,scrollbars=' + scrollbars +',menubar=0,status=0' );
}

function openbranch( point )
{


	newId = "folder" + point + "data";
	imgId = "folder" + point + "picon";
	document.getElementById(newId).style.color = "#000";		
	

	showIt = document.getElementById(newId) ;

	if (showIt.style.display == "none")
	{
		showIt.style.display = "";
		document.getElementById(imgId).src = "images/ul_minus.gif";

	} else {
		showIt.style.display = "none" ;
		document.getElementById(imgId).src = "images/ul_plus.gif";

	}


}
