var okno=null;
var stan=0;

function otworz(teksthtml,nazwa,width,height)

{
var okno = window.open(teksthtml,nazwa,'width=' + width + ',height=' + height + ',toolbars=no,resizeble=no,status=no,scrollbars=no,left=10,top=10');
stan==1;
}

function wyswietl(komunikat)
{
alert(komunikat);
}

function moje_okno()
	{
	document.open();
	document.write("<HTML><HEAD><TITLE>test okna</TITLE></HEAD>");
	document.write("<BODY>cześć</BODY></HTML>");
	document.close();
	}
