function getWindowWidth() {
		if (window.innerWidth)
			return window.innerWidth;
		else if (document.body && document.body.offsetWidth)
			return document.body.offsetWidth;
	}
	function rebuildWindow() {

		Width = getWindowWidth();
//			window.status=Width;

			if(Width<870) {


  			
  			document.getElementById("sponsor").style.left= "454px";
  			document.getElementById("elter").style.left= "370px";
  			document.getElementById("atikon").style.left= "569px";

			} else {

  			document.getElementById("sponsor").style.left= "654px";
  			document.getElementById("elter").style.left = "570px";
  			document.getElementById("atikon").style.left = "769px";



			}
		

	}
	function checkSize() {
		rebuildWindow();
/*		if(document.body && document.body.offsetWidth)
		window.onresize = rebuildWindow;*/
	}
	window.onload=checkSize;
       window.onresize=checkSize;