function areaToggle(obj,num) {
		if(obj.style.visibility == "visible"){
			obj.style.visibility = "hidden";
		}else{
			//get the left offset of the container
			var containerOffset = document.getElementById('adf1_sub').offsetLeft;
			if(OS == 'Mac'){
				containerOffset = containerOffset + 10;
			}
			//alert(containerOffset);
			if(num==2){
				moveDiv = 157 + containerOffset;
				//alert(moveDiv);
				obj.style.left = moveDiv   + "px";
			}
			if(num==3){
				moveDiv = 314 + containerOffset;
				//alert(moveDiv);
				obj.style.left = moveDiv   + "px";
			}
			if(num==4){
				moveDiv = 471 + containerOffset;
				//alert(moveDiv);
				obj.style.left = moveDiv   + "px";
			}
			if(num==5){
				moveDiv = 628 + containerOffset;
				//alert(moveDiv);
				obj.style.left = moveDiv   + "px";
			}
			obj.style.visibility = "visible";
		}
	}
	
	

