function form_view(LayerName) 
	{
	
	var zones = new Array();
		zones[0] = "";
		zones[1] = "contact";
		zones[2] = "spouse";
		zones[3] = "children";
		zones[4] = "interests";
		zones[5] = "membership";
		zones[6] = "showall";
	
	
	
	for (var x = 1; x < 6; x++)
   		{
   		   var showthis = zones[x];
			//alert(LayerName +" "+x+" "+showthis);
			document.getElementById(zones[x]).style.display = "none";

   		}


		document.getElementById(zones[LayerName]).style.display = "inline";



	if (LayerName == "6") 
		{
			for (var x = 1; x < 6; x++)
   				{
				document.getElementById(zones[x]).style.display = "inline";
				//document.getElementById('but').style.display = "none";
   				}
		} 


} //end function



function hideshow(show) 
	{

		document.getElementById(show).style.display = "inline";


} //end function

