/*********************************/
/* Zmien zawartosc bloku 'ident' */
/*****************************/
function writeTo(ident, tekst){
	if (document.all) {//  IE4+ code
		document.all[ident].innerHTML = tekst;
	} else if (document.layers) {//  NS4+ code 
		document.layers[ident].document.open();
		document.layers[ident].document.write(tekst);
		document.layers[ident].document.close();
	} else if (document.getElementById) {// NS6+, Firefox 
		document.getElementById(ident).innerHTML= tekst;

	} 
}


function okno_wyb2(link,nazwa,szer,wys)
{
	mywin=window.open(link,nazwa,
		'toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,copyhistory=0,width='+szer+',height='+wys);

	mywin.focus();
}
