			var saveEdit;
			function isToScroll(oElement,oParentElement)
			{
				
				if(oElement!=null)
				{
					oElement.style.display="block";
					
					if(oParentElement!=null)
					{
						
						if(oElement.offsetHeight>oParentElement.offsetHeight)
						{
							oParentElement.style.overflow="scroll";
						}
						else
						{
							oParentElement.style.overflow="auto";
						}
					}
				}
			}
			
			function index (edit)
			{
				if(edit!=null)
				{
					saveEdit=edit;
				}
				if(saveEdit!=1)
				{
					
					isToScroll(document.getElementById("innerContent"),document.getElementById("scrollContent"))
				}
				else
				{
					
					//document.getElementById("scrollContent").style.overflow="visible";
					//document.getElementById("innerContent").style.display="block";
					
				}
				
				
				isToScroll(document.getElementById("innerLeft"),document.getElementById("scrollLeft"))
				isToScroll(document.getElementById("innerRight"),document.getElementById("scrollRight"))
				var oBody = document.getElementsByTagName("body")[0];
				oBody.style.overflow="auto";
			}

