// JavaScript Document

	var Obj;
	var imgOpen = new Image()
	var imgClose = new Image()
	imgOpen.src="../../images/admin/open.gif"
	imgClose.src="../../images/admin/close.gif"
	
	function expand(el)
	{
		Obj = eval("child"+el)
		var whichEl = (event) ? event.srcElement : false
		if(!whichEl.name) whichEl = eval("document.all.img" + el)
	
		if(Obj.style.display == "none")
		{
			Obj.style.display = "block"
			whichEl.src = imgOpen.src
		}
		else
		{
			Obj.style.display = "none"
			whichEl.src = imgClose.src
		}
	}

	function switchbar()
	{
		if (switchpoint.innerText==3)
		{
			switchpoint.innerText=4
			document.all("xxx").style.display="none" 
			top.content.cols="10,*"
		}
		else
		{
			switchpoint.innerText=3
			document.all("xxx").style.display="" 
			top.content.cols="180,*"
		}	
	}
	
	function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}