
// oblibene
function bookmarksite(){
if (document.all)
window.external.AddFavorite("http://www.piloun.com/webinfo", "WebInfo-GPR,S-Rank");
else if (window.sidebar)
window.sidebar.addPanel("WebInfo-GPR,S-Rank", "http://www.piloun.com/webinfo", "")
}

var inputs;
var imgFalse = 'obr/vol9.png';
var imgTrue = 'obr/vol10.png';

function init_ch() {
	replaceChecks();
}

 active = new Image(220,65); 
 active.src = "obr/logo_n5.gif"; 
 inactive = new Image(220,65); 
 inactive.src = "obr/logo_n4.gif"; 


function replaceChecks() {
	inputs = document.getElementsByTagName('input');
	for(var i=0; i < inputs.length; i++) {
		if(inputs[i].getAttribute('type') == 'checkbox') {
			var img = document.createElement('img');
			if(inputs[i].checked) {
				img.src = imgTrue;
			} else {
				img.src = imgFalse;
			}
			img.id = 'checkImage'+i;
			img.onclick = new Function('checkChange('+i+')');
			inputs[i].parentNode.insertBefore(img, inputs[i]);
			inputs[i].style.display='none';
		}
	}
}
function checkChange(i) {
	if(inputs[i].checked) {
		inputs[i].checked = '';
		document.getElementById('checkImage'+i).src=imgFalse;
	} else {
		inputs[i].checked = 'checked';
		document.getElementById('checkImage'+i).src=imgTrue;
	}
}
window.onload = init_ch;
