
//okno
function otworzOkno(strona,nazwaOkna,szer,wys) {
	Okno = window.open(strona,nazwaOkna,'width='+szer+',height='+wys+',top=150,screenY=150,left=100,screenX=100,menubar=no,resizable=yes,depended=yes,alwaysRaised=yes,scrollbars=no');
	Okno.focus();	
	}
	

//okno koszyk	
function otworzOknoKoszyk(clear,param) {
    if (clear == true) {window.close();} //zamyka okno ktore je wywolalo
    var nazwaOkna = window.name;
    if (nazwaOkna != 'koszyk1') { nazwaOkna = 'koszyk'; }
	Okno = window.open('koszyk.php?'+param,nazwaOkna,'width=880,height=400,top=100,screenY=100,left=100,screenX=100,menubar=no,resizable=yes,depended=yes,alwaysRaised=yes,scrollbars=yes');
	Okno.focus();	
	}
	
function otworzOknoFoto(strona,szer,wys) {
	noweOkno = window.open('','okno','width='+szer+',height='+wys+',top=150,screenY=150,left=100,screenX=100,menubar=no,resizable=yes,depended=yes,alwaysRaised=yes');
	noweOkno.document.open();
	noweOkno.document.write ('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">');
	noweOkno.document.write ('<body onBlur="javascript:window.close()">');
	noweOkno.document.write ('<img src="biblioteki/zdjecie.php?img=../'+strona+'" /p>');
	noweOkno.document.write ('</body>');
	noweOkno.document.close();
	noweOkno.focus();		
	}

function browserHeight() {
var myHeight = 0;
if( typeof( window.innerHeight ) == 'number' ) {
//Non-IE
myHeight = document.height + 90;
} else if( document.documentElement && document.documentElement.clientHeight ) {
//IE 6+ in 'standards compliant mode'
myHeight = documentElement.clientHeight+30;
//alert('2');
} else if( document.body && document.body.clientHeight ) {
//IE 4 compatible
myHeight = document.body.scrollHeight+30;
//alert('3');
}
return myHeight;
}

	

