<!--

var Containers= new Array();
Containers[0]='PlaceHolder1';
Containers[1]='PlaceHolder2';
Containers[2]='PlaceHolder3';
Containers[3]='PlaceHolder4';
Containers[4]='PlaceHolder5';
Containers[5]='PlaceHolder6';
Containers[6]='PlaceHolder7';
Containers[7]='PlaceHolder8';

	function LoadContainer(ContainerID)
	{  	    
	    FreeContainer();        
	    var CurrentContainer = document.getElementById(ContainerID);
	    CurrentContainer.style.display = "block";

    }
    
    function FreeContainer()
    {
      
        for (var i=0; i<Containers.length; i++)
        {
            var obj = document.getElementById(Containers[i]);
            obj.style.display = "none";
        }
	}
	
-->
