function show(nazwa, width, height)
{
                    tx=(screen.availWidth-width)/2;
                    ty=(screen.availHeight-height)/2;
					var Win = window.open(nazwa, "",'titlebar=no,toolbar=no,resizable=no,top='+ty+',left='+tx+',scrollbars=no,status=no,menubar=no,width=' + (width + 16)+ ',height=' + (height + 16));
                    Win.document.write('<base href="http://localhost/spa/"/><BODY bgcolor="#FFFFFF" onclick="self.close()">');
                    Win.document.write('<A href="#" onclick="javascript: window.close();return false;"><img border="0" src="',nazwa,'">');
                    Win.document.close();


}
