	function xDoResize() {
		var xDiv = document.getElementById("diviso");
		if (!xDiv) return true;
		var xWidth;
	  if (typeof(window.innerWidth) == 'number') //Non-IE
	    xWidth = window.innerWidth;
	  else if (document.documentElement && (document.documentElement.clientWidth)) //IE 6+ in 'standards compliant mode'
	    xWidth = document.documentElement.clientWidth;
	  else if (document.body && (document.body.clientWidth)) //IE 4 compatible
	    xWidth = document.body.clientWidth;
	  else
	  	return true;
	  xDiv.style.left = Math.max(0, xWidth - 205) + "px";
	  return true;
	}

	window.onresize = xDoResize;
	window.setInterval(xDoResize, 1000);
	xDoResize();

