function reklama() {

function winW() {
	if (window.innerWidth) return  window.innerWidth;
	else if (document.documentElement && document.documentElement.clientWidth)
		return document.documentElement.clientWidth;
	else if (document.body && document.body.clientWidth)
		return document.body.clientWidth;
	else return null;
	}
	
var sirka=winW();

if (sirka<=1240) {
document.getElementById('bannery').style.display='none';
}

if (sirka>1240) {
document.getElementById('bannery').style.display='block';
}
	
}
