function porihtaj() {
	// s obzirom na rezoluciju
	visina=screen.height;
	dodaj1=0;
	if(visina>768) {
		dodaj1=visina-768;
		btm1=35+dodaj1;
		btm2=80+dodaj1;
		btm3=65+dodaj1;
		document.getElementById('whitespace-btm1').style.height=btm1+ 'px';
		document.getElementById('whitespace-btm2').style.height=btm2+ 'px';
		document.getElementById('whitespace-btm3').style.height=btm3+ 'px';
	}
	// s obzirom na content polje
	/*visinapolja=parseInt(document.getElementById('content').offsetHeight);
	pozicija=parseInt(document.getElementById('content').style.top);
	if(visinapolja>(650-pozicija)) {
		dodaj2=visinapolja-650+pozicija;
		if(dodaj2>dodaj1) {
			btm1=35+dodaj2;
			btm2=80+dodaj2;
			btm3=65+dodaj2;
			document.getElementById('whitespace-btm1').style.height=btm1+ 'px';
			document.getElementById('whitespace-btm2').style.height=btm2+ 'px';
			document.getElementById('whitespace-btm3').style.height=btm3+ 'px';
		}
	}
	*/
}

window.onload = function() { 
	porihtaj();
}


