

function OpenPicture( pic_index , wid_x , hei_y )
	{	
	NewWindow=window.open('','','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, fullscreen=no, channelmode=no, width='+wid_x+', height='+hei_y+', left=40, top=40');
	NewWindow.document.open();
	
	NewWindow.document.writeln("<head>");
	NewWindow.document.writeln("<title>Prof-English</title>");
	
	NewWindow.document.writeln("<style type=\"text/css\">");
	NewWindow.document.writeln("body{font-family: Verdana; font-size:12;}");
	NewWindow.document.writeln("a:link{color:#0000FF;text-decoration:none;}");
	NewWindow.document.writeln("a:visited{color:#0000FF;text-decoration:none;}");
	NewWindow.document.writeln("a:hover{color:#EE0000;text-decoration:underline;}");
	NewWindow.document.writeln("</style>");
		
	NewWindow.document.writeln("</head>");	
	NewWindow.document.writeln("<body leftmargin=\"1\" topmargin=\"1\" rightmargin=\"1\">");
	NewWindow.document.writeln("<a href=\"javascript:window.close();\"><img src=\""+pic_index+"\" style=\"border: solid 0;\"></a>");
	NewWindow.document.writeln("<center>");
	NewWindow.document.writeln("<br><a href=\"javascript:window.close();\">Zamknij</a><br>");
	NewWindow.document.writeln("</center>");
	NewWindow.document.writeln("</body>");
	NewWindow.document.close();
	NewWindow.focus();
	}
	


function img1(name)
  {
	img=new Image();
    img.src = 'pliki/'+name+'.jpg';
	document.images[name].src=img.src;
  }


function img2(name)
  {
	img=new Image();
    img.src = 'pliki/'+name+'m.jpg';
	document.images[name].src=img.src;
  }
  


function pytanie( adres )
  {
  odp = window.confirm("Czy usun±ć wybran± pozycję?");

  if( odp == true )
    window.location.href = adres;
  }	
  
  

