var winWidth;
		var winHeight;

		function getWinDym(){
			if (typeof window.innerWidth != 'undefined') {
				winWidth = window.innerWidth;
				winHeight = window.innerHeight;
			} else {
				if (document.documentElement && typeof document.documentElement.clientWidth != 'undefined' && document.documentElement.clientWidth != 0) {
					winWidth = document.documentElement.clientWidth;
					winHeight = document.documentElement.clientHeight;
				} else {
					if (document.body && typeof document.body.clientWidth != 'undefined') {
						winWidth = document.body.clientWidth;
						winHeight = document.body.clientHeight;
					}
				}
			}
			if(!document.all){
				mrgn = 50;
				winWidth -= mrgn;
				winHeight -= mrgn;
			}else{
				if (navigator.appName=="Microsoft Internet Explorer"){ 
					var tempVer=navigator.appVersion.split("MSIE") 
					var browserVer=parseFloat(tempVer[1])
					if (browserVer >= 7) {
						mrgn = 60;
					} else {
						mrgn = 40;
					}
				} else {
					mrgn = 20;
				}
				winWidth -= mrgn;
				winHeight -= mrgn;
			}
		}
		
		function init() {
			//define universal reference to "staticcontent"
			crossobj = document.getElementById('info');
			crossHeight = crossobj.offsetHeight;
			//define reference to the body object in IE
			iebody=(document.compatMode && document.compatMode != "BackCompat")? document.documentElement : document.body
			
			setInterval("positionit()",10);
		}

		function positionit(){
			getWinDym();
			//define universal dsoc left point
			var dsocleft=document.all? iebody.scrollLeft : pageXOffset
			//define universal dsoc top point
			var dsoctop=document.all? iebody.scrollTop : pageYOffset
		
			//if the user is using IE 4+ or Firefox/ NS6+
			if (document.all||document.getElementById){
				if (25 + winHeight - crossHeight + dsoctop > 100) {
					crossobj.style.top= 25 + winHeight - crossHeight + dsoctop +"px"
				} else {
					crossobj.style.top = "100px";
				}
			}
		}
