function otworzOkno (sida,wi,he)
{
plik = window.open(sida,'blank','toolbar=0,scrollbars=yes,location=0,status=0,menubar=0,resizable=yes,width='+wi+',height='+he); 
plik.opener = self;
plik.focus();
}
var newwindow = '';

function wopen(url,h,w) {
	if (!newwindow.closed && newwindow.location) {
		newwindow.location.href = url;
	}
	else {
		newwindow=window.open(url,'name','height='+h+',width='+w+',toolbar=0,scrollbars=yes,location=0,status=0,menubar=0,resizable=yes');
		if (!newwindow.opener) newwindow.opener = self;
	}
	if (window.focus) {newwindow.focus()}
	return false;
}
