/* author: pzuralski */

var activeTab = 0;

function rotateTabs() {
	activeTab = activeTab+1;
	if (activeTab > 3) {
		activeTab = 1;
	}
	changeTabs(activeTab);
	setTimeout("rotateTabs()", 5000);
}

function changeTabs(changeon) {
	var i = 0;
	if (isNaN(parseInt(changeon))) {
		i = parseInt(changeon.slice(6));
	} else {
		i = changeon;
	}
	activeTab = i;
	
	document.getElementById('screen01').style.display = 'none';
	document.getElementById('screen02').style.display = 'none';
	document.getElementById('screen03').style.display = 'none';
	document.getElementById('screen0'+i).style.display = 'block';

	document.getElementById('tab01').className = '';
	document.getElementById('tab02').className = '';
	document.getElementById('tab03').className = '';
	document.getElementById('tab0'+i).className = 'on';
}

function openImage(imgSrc, imgHeight, imgWidth, imgName, objName) {
	newWindow = window.open('','newWindow','height='+(imgHeight+25)+'px,width='+(imgWidth+25)+'px,status=no,toolbar=no,location=no,menubar=no,scrollbars=no');
	var tmp = newWindow.document;
	tmp.write(
		'<html><head><title> '+imgName+' - '+objName+' - CentralaGier.pl</title><head>' +
		'<body><a href="javascript:window.close();" onclic="window.close(); return false;" title="Kliknij, aby zamkn±æ okno" style="border:0;">'+
		'<img src="' + imgSrc + '" style="width:'+imgWidth+';height:'+imgHeight+';text-align:center;border:0;" alt="'+imgName+'"/></a></body>' +
		'</html>'
	);
	tmp.close();
}
