

function ss(temp)
  {
	window.status = temp;
	return true;
  }


function sc()
  {
	return ss('');
  }

function img1(name)
  {
	img=new Image();
    img.src = 'pliki/'+name+'.gif';
	document.images[name].src=img.src;
  }


function img2(name)
  {
	img=new Image();
    img.src = 'pliki/'+name+'m.gif';
	document.images[name].src=img.src;
  }

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>TOMcom - pisanie stron www - projektowanie systemów CMS - witamy</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();
	//return;
	}
	
	
function otworz(name)
  {
	window.open(name, '_blank');
  }
  
  
  
  
  