function MOver(nazwa1) {document.images[nazwa1].src=nazwa1+"2.gif";} 
function MOut(nazwa2) {document.images[nazwa2].src=nazwa2+"1.gif";} 

function combo(nazwa) {
	document.all[nazwa].style.visibility="visible";
	}
function uncombo(nazwa) {
	document.all[nazwa].style.visibility="hidden";
	}
function obraz(url, title, zam, width, height) {
var win;
win = window.open('', 'win', 'resizable=no,scrollbars=no,menubar=no' );
var zamk="onclick='javascript:window.close()'";
if (zam!=1) {zamk=null};
win.document.close();
win.document.open();
win.document.write("<html><head><title>"+title+"</title></head><body background="+url+" "+zamk+"></body></html>");
width=width+10;
height=height+29;
win.resizeTo(width,height);
win.moveTo(screen.width/2-width/2,screen.height/2-height/2);
win.focus();
}
function strona(url, width, height) 
{
var page = window.open(url,"page",',resizable=no,scrollbars=yes,menubar=no' );
width=width+20;
height=height+29;
page.resizeTo(width,height);
page.moveTo(screen.width/2-width/2,screen.height/2-height/2);
page.focus();
}