// JavaScript Document
function fixwidth() {
	if( document.body.clientWidth < 1000 ) {
		document.getElementById("wysrodkowanie").style.position = "static";
		document.getElementById("wysrodkowanie").style.marginLeft = 0;
		document.getElementById("wysrodkowanie").style.marginTop = 0;
		document.getElementById("wysrodkowanie").style.left = 0;
		document.getElementById("wysrodkowanie").style.top = 0;
	} else {
		document.getElementById("wysrodkowanie").style.position = "absolute";
		document.getElementById("wysrodkowanie").style.marginLeft = "-500px";
		document.getElementById("wysrodkowanie").style.marginTop = "-210px";
		document.getElementById("wysrodkowanie").style.left = "50%";
		document.getElementById("wysrodkowanie").style.top = "50%";
	}
	
	window.onresize = fixwidth;
}