// showInfoDiv
		//document.getElementById("boxelder").style.display="none";
  		function showInfoDiv(objDiv) {
		//document.body.style.overflow = 'hidden';
		//document.getElementById(objDiv).style.display = "none";
		
		if(document.all) {
			osw = document.body.offsetWidth;
			osh = document.body.offsetHeight;
		} else {
			osw = window.innerWidth;
			osh = window.innerHeight;
		}
		document.getElementById(objDiv).style.display='block';
		atdw = getStyle(objDiv, "width");
		atdw = atdw.substr(0,atdw.indexOf("px"));
		atdh = document.getElementById(objDiv).offsetHeight;

		//if (atdh != "auto"){
			//atdh = atdh.substr(0,atdh.indexOf("px"));
		//}

		if (osh<atdh){
			osh=atdh;
			osh=+osh+40;
		}

		if(document.all) {
			document.getElementById('aframe').style.width = ''+(osw-21)+"px";
			document.getElementById('aframe').style.height = ''+(osh-21)+"px";
			document.getElementById('aframe').style.top = ''+0+"px";
			document.getElementById('aframe').style.left = ''+0+"px";
		} else {
			document.getElementById('aframe').style.width = ''+osw+"px";
			document.getElementById('aframe').style.height = ''+osh+"px";
			document.getElementById('aframe').style.top = ''+0+"px";
			document.getElementById('aframe').style.left = ''+0+"px";
		}
		
		topm = (osh-atdh)/2;
		//alert("osh="+osh+", atdh="+atdh+", topm="+topm);
		if (topm==0){
			topm = 10;
		}

		document.getElementById('aframe').style.display='block';
		document.getElementById(objDiv).style.top = ''+((topm)/2)+"px";
		document.getElementById(objDiv).style.left = ''+((osw-atdw)/2)-26+"px";
		//document.getElementById(objDiv).style.display='block';
	}

	function hideInfoDiv(objDiv) {
		//document.body.style.overflow = '';
		document.getElementById(objDiv).style.display='none';
		document.getElementById('aframe').style.display='none';
		//alert(document.getElementById(objDiv).innerHTML);
	}


