window.onload = rolloverInit;





function rolloverInit() {
	for (var i=0; i<document.images.length; i++) {
		if (document.images[i].parentNode.tagName == "A") {
			setupRollover(document.images[i]);
		}
	}
	if(document.getElementById("idPobierz64"))
	{
		document.getElementById("idPobierz64").onclick = WyswietlArchiwum64;
	}
	if(document.getElementById("idPobierz32"))
	{
		document.getElementById("idPobierz32").onclick = WyswietlArchiwum32;
	}
}






function setupRollover(thisImage) {
	thisImage.outImage = new Image();
	thisImage.outImage.src = thisImage.src;
	thisImage.onmouseout = rollOut;

	thisImage.overImage = new Image();
	thisImage.overImage.src = "../graphics/" + thisImage.id + ".gif";
	thisImage.onmouseover = rollOver;	
}






function rollOver() {
	this.src = this.overImage.src;
}






function rollOut() {
	this.src = this.outImage.src;
}





function WyswietlArchiwum32()
{
  	window.location = "archiwum.php";
}





function WyswietlArchiwum64()
{
  	window.location = "archiwum.php?system=64";
}




function directpage(i)
{
  	window.location = "zarejestruj.php?sFile=" + i;
}
