function resize() {	
	var bodyWidth = document.body.offsetWidth;
	(bodyWidth < 1200) ? document.getElementById("third-new").style.display = "none" : document.getElementById("third-new").style.display = "block";
}

window.onload = resize;
window.onresize = resize;

