﻿		function setDivs()
		{	
			var shadowDiv = document.getElementById("shadow");
			var DivHeight = document.getElementById("wrap").offsetHeight
			var certDiv = document.getElementById("cert");
			var certShadowDiv = document.getElementById("certShadow");
			//var wrapDivWidth = document.getElementById("wrap").offsetWidth

			shadowDiv.style.height = DivHeight - 20 + "px";
			certDiv.style.top = DivHeight + 5 + "px";
			certDiv.style.left = certDiv.style.left - 0 + "px";
			//certDiv.style.width = wrapDivWidth + "px";

			certShadowDiv.style.top = DivHeight + 7 + "px";
			certShadowDiv.style.left = certShadowDiv.style.left + 2 + "px";
		}