function Sky() {
	var Xwidth = getWindowSize()[0];
	var Skycrapper = document.getElementById('SkyCrapper');
	
	if (Skycrapper == null) {
		return;
	}
	/*alert(getWindowSize()[0]); */
	if(Xwidth<="1210") {
		Skycrapper.style.display='none';
	}
	else {
		Skycrapper.style.display='block';
	}
}

window.onresize= SkyResize;

function SkyResize() {
  Sky();
}

function SkyRight3() {
	var Xwidth = getWindowSize()[0];
	var Right3 = document.getElementById('Right3');
	if (Right3 == null) {
		return;
	}
	//alert (Xwidth);
	if(Xwidth <= "1250") {
		Right3.style.display='none';
	}
	else {
		Right3.style.display='block';
	}
}

window.onload = Right3Resize;
window.onresize= Right3Resize;

function Right3Resize() {
	SkyRight3();
	}
