
function insRow1()
{
	//var table=document.getElementById('mainTable');
	//table.deleteRow(0);
	//var y=table.insertRow(0);

	ie=(document.all)?true:false
	ns=(document.layers)?true:false
	
	 if(ie) 
	 {
		 var table=document.getElementById('mainTable');
		 while ( table.childNodes.length >= 1 )
		  {
			 table.removeChild( table.firstChild );       
		  } 


		 
		 var tr = document.createElement('tr');

		 var td1 = document.createElement('td');
		 td1.setAttribute('id', 'td1');
		 td1.setAttribute('style', 'width:30px;');
		 
		 var td2 = document.createElement('td');
		 td2.setAttribute('id', 'td2');
		 td2.setAttribute('style', 'width:130px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;');
		 
		 var td3 = document.createElement('td');
		 td3.setAttribute('id', 'td3');
		 td3.setAttribute('style', 'width:115px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;');
		 
		 var td4 = document.createElement('td');
		 td4.setAttribute('id', 'td4');
		 td4.setAttribute('style', 'width:120px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;');
		 
		 var td5 = document.createElement('td');
		 td5.setAttribute('id', 'td5'); 
		 td5.setAttribute('style', 'width:120px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;');
		 
		 var td6 = document.createElement('td');
		 td6.setAttribute('id', 'td6');
		 td6.setAttribute('style', 'width:120px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;');
		 
		 var td7 = document.createElement('td');
		 td7.setAttribute('id', 'td7');
		 td7.setAttribute('style', 'width:120px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;');
		 
		 var td8 = document.createElement('td');
		 td8.setAttribute('id', 'td8');
		 td8.setAttribute('style','padding-left:47px;font-weight:bold;font-family:arial; font-size:13px; color:#FFFFFF;')
		 td8.innerText = "Partnerzy";
			
		 var a2 = document.createElement('a');
		 a2.setAttribute('href', 'index.php?id=2');
		 a2.setAttribute('style','text-decoration:none; color:#FFFFFF; font-family:arial;')
		 a2.innerText = "Informacje";
		 td2.appendChild(a2);
		 
		 
		 var a3 = document.createElement('a');
		 a3.setAttribute('href', 'index.php?id=3');
		 a3.setAttribute('style','text-decoration:none; color:#FFFFFF; font-family:arial;')
		 a3.innerText = "Oferta";
		 td3.appendChild(a3);
		 
		 var a4 = document.createElement('a');
		 a4.setAttribute('href', 'index.php?id=4');
		 a4.setAttribute('style','text-decoration:none; color:#FFFFFF; font-family:arial;')
		 a4.innerText = "Obszar";
		 td4.appendChild(a4);
		 
		 var a5 = document.createElement('a');
		 a5.setAttribute('href', 'index.php?id=5');
		 a5.setAttribute('style','text-decoration:none; color:#FFFFFF; font-family:arial;')
		 a5.innerText = "Zespół";
		 td5.appendChild(a5);

		 var a6 = document.createElement('a');
		 a6.setAttribute('href', 'index.php?id=6');
		 a6.setAttribute('style','text-decoration:none; color:#FFFFFF; font-family:arial;')
		 a6.innerText = "Przetargi";
		 td6.appendChild(a6);

		 var a7 = document.createElement('a');
		 a7.setAttribute('href', 'index.php?id=7');
		 a7.setAttribute('style','text-decoration:none; color:#FFFFFF; font-family:arial;')
		 a7.innerText = "Kontakt";
		 td7.appendChild(a7);

		
		 
		 tr.appendChild(td1);
		 tr.appendChild(td2);
		 tr.appendChild(td3);
		 tr.appendChild(td4);
		 tr.appendChild(td5);
		 tr.appendChild(td6);
		 tr.appendChild(td7);
		 tr.appendChild(td8);
		 
		 var tblBody = document.createElement("tbody");
		 tblBody.appendChild(tr);
		 table.appendChild(tblBody);
		
	 }
	
	 else 
	 {
			var table=document.getElementById('mainTable');
			table.deleteRow(0);
			var y=table.insertRow(0);
			table.childNodes[1].childNodes[1].setAttribute("style","width:550px;height:40px;");
			y.innerHTML='<td style="width:30px;"></td><td style="width:120px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;"><a href="index.php?id=2" style="text-decoration:none; color:#FFFFFF; font-family:arial">Informacje</a></td>'+ 
			'<td style="width:120px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;"><a href="index.php?id=3" style="text-decoration:none; color:#FFFFFF; font-family:arial;">Oferta</a></td>'+ 
			'<td style="width:120px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;"><a href="index.php?id=4" style="text-decoration:none; color:#FFFFFF; font-family:arial;">Cele</a></td>'+ 
			'<td style="width:120px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;"><a href="index.php?id=5" style="text-decoration:none; color:#FFFFFF; font-family:arial;">Zespół</a></td>'+ 
			'<td style="width:120px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;"><a href="index.php?id=6" style="text-decoration:none; color:#FFFFFF; font-family:arial;">Przetargi</a></td>'+ 
			'<td style="width:120px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;"><a href="index.php?id=7" style="text-decoration:none; color:#FFFFFF; font-family:arial;">Kontakt</a></td><td></td>'+
			'<td style="padding-left:46px;font-weight:bold;font-family:arial; font-size:13px; color:#FFFFFF;\">Partnerzy</td>';
	}

	
	
}

function insRow2()
{
			ie=(document.all)?true:false
			ns=(document.layers)?true:false
			
			 if(ie) 
			 {
				 var table=document.getElementById('mainTable');
				 while ( table.childNodes.length >= 1 )
				  {
					 table.removeChild( table.firstChild );       
				  } 


				 
				 var tr = document.createElement('tr');

				 var td1 = document.createElement('td');
				 td1.setAttribute('id', 'td1');
				 td1.setAttribute('style', 'width:20px;');
				 
				 var td2 = document.createElement('td');
				 td2.setAttribute('id', 'td1');
				 td2.setAttribute('style', 'width:140px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;');
				 
				 var td3 = document.createElement('td');
				 td3.setAttribute('id', 'td1');
				 td3.setAttribute('style', 'width:120px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;');
				 
				 var td4 = document.createElement('td');
				 td4.setAttribute('id', 'td1');
				 td4.setAttribute('style', 'width:120px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;');
				 
				 var td5 = document.createElement('td');
				 td5.setAttribute('id', 'td1'); 
				 td5.setAttribute('style', 'width:120px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;');
				 
				 var td6 = document.createElement('td');
				 td6.setAttribute('id', 'td1');
				 td6.setAttribute('style', 'width:120px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;');
				 
				 var td7 = document.createElement('td');
				 td7.setAttribute('id', 'td1');
				 td7.setAttribute('style', 'width:120px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;');
				 
				 var td8 = document.createElement('td');
				 td8.setAttribute('id', 'td1');
				 td8.setAttribute('style','padding-left:42px;font-weight:bold;font-family:arial; font-size:13px; color:#FFFFFF;')
				 td8.innerText = "Partnerzy";
					
				 var a2 = document.createElement('a');
				 a2.setAttribute('href', 'index.php?id=8');
				 a2.setAttribute('style','text-decoration:none; color:#FFFFFF; font-family:arial;')
				 a2.innerText = "Inicjatywa biotechnologiczna";
				 td2.appendChild(a2);
				 
				 var a3 = document.createElement('a');
				 a3.setAttribute('href', 'index.php?id=9');
				 a3.setAttribute('style','text-decoration:none; color:#FFFFFF; font-family:arial;')
				 a3.innerText = "WRPO 3.3";
				 td3.appendChild(a3);
				 
				 var a4 = document.createElement('a');
				 a4.setAttribute('href', 'index.php?id=10');
				 a4.setAttribute('style','text-decoration:none; color:#FFFFFF; font-family:arial;')
				 a4.innerText = "PO IG 8.1.";
				 td4.appendChild(a4);

				 var a5 = document.createElement('a');
				 a5.setAttribute('href', 'index.php?id=11');
				 a5.setAttribute('style','text-decoration:none; color:#FFFFFF; font-family:arial;')

				 a5.innerText = "PO KL 8.2.1 Opole";
				 td5.appendChild(a5);

				 var a6 = document.createElement('a');
				 a6.setAttribute('href', 'index.php?id=12');
				 a6.setAttribute('style','text-decoration:none; color:#FFFFFF; font-family:arial;')
				 a6.innerText = "Pozyskiwanie";
				 td6.appendChild(a6);

				 var a7 = document.createElement('a');
				 a7.setAttribute('href', 'index.php?id=13');
				 a7.setAttribute('style','text-decoration:none; color:#FFFFFF; font-family:arial;')
				 a7.innerText = "Osiagnięcia";
				 td7.appendChild(a7);
				 
				 
				 tr.appendChild(td1);
				 tr.appendChild(td2);
				 tr.appendChild(td3);
				 tr.appendChild(td4);
				 tr.appendChild(td5);
				 tr.appendChild(td6);
				 tr.appendChild(td7);
				 tr.appendChild(td8);
				 
				 var tblBody = document.createElement("tbody");
				 tblBody.appendChild(tr);
				 table.appendChild(tblBody);
				
			 }
			
			 else 
			 {
					var table=document.getElementById('mainTable');
					table.deleteRow(0);
					var y=table.insertRow(0);
					table.childNodes[1].childNodes[1].setAttribute("style","width:550px;height:40px;");
					y.innerHTML='<td style="width:30px;"></td><td style="width:140px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;"><a style="text-decoration:none; color:#FFFFFF; font-family:arial;" href="index.php?id=8" >Inicjatywa biotechnologiczna</a></td>'+ 
					'<td style="width:100px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;"><a style="text-decoration:none; color:#FFFFFF; font-family:arial;" href="index.php?id=9">WRPO 3.3</a></td>'+ 
					'<td style="width:120px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;"><a style="text-decoration:none; color:#FFFFFF; font-family:arial; text-align:center;" href="index.php?id=11" >PO KL 8.2.1 <br/>Opole</a></td>'+
					'<td style="width:120px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;"><a style="text-decoration:none; color:#FFFFFF; font-family:arial;" href="index.php?id=10">PO IG 8.1.</a></td>'+ 
					'<td style="width:120px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;"><a style="text-decoration:none; color:#FFFFFF; font-family:arial;" href="index.php?id=12">Pozyskiwanie</a></td>'+ 
					'<td style="width:120px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;"><a style="text-decoration:none; color:#FFFFFF; font-family:arial;" href="index.php?id=13" >Osiągnięcia</a></td><td></td>'+
					'<td style="padding-left:47px;font-weight:bold;font-family:arial; font-size:13px; color:#FFFFFF;">Partnerzy</td>';
			 	}

}

function insRow3()
{
	ie=(document.all)?true:false
			ns=(document.layers)?true:false
			
			 if(ie) 
			 {
				 var table=document.getElementById('mainTable');
				 while ( table.childNodes.length >= 1 )
				  {
					 table.removeChild( table.firstChild );       
				  } 


				 
				 var tr = document.createElement('tr');

				 var td1 = document.createElement('td');
				 td1.setAttribute('id', 'td1');
				 td1.setAttribute('style', 'width:50px;');
				 
				 var td2 = document.createElement('td');
				 td2.setAttribute('id', 'td1');
				 td2.setAttribute('style', 'width:150px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;');
				 
				 var td3 = document.createElement('td');
				 td3.setAttribute('id', 'td1');
				 td3.setAttribute('style', 'width:180px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;');
				 
				 var td4 = document.createElement('td');
				 td4.setAttribute('id', 'td1');
				 td4.setAttribute('style', 'width:220px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;');
				 
				 var td5 = document.createElement('td');
				 td5.setAttribute('id', 'td1'); 
				 td5.setAttribute('style', 'width:150px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;');
				 
				
				 var td6 = document.createElement('td');
				 td6.setAttribute('id', 'td1');
				 td6.setAttribute('style','padding-left:60px;font-weight:bold;font-family:arial; font-size:13px; color:#FFFFFF;')
				 td6.innerText = "Partnerzy";
					
				 var a2 = document.createElement('a');
				 a2.setAttribute('href', 'index.php?id=14');
				 a2.setAttribute('style','text-decoration:none; color:#FFFFFF; font-family:arial;')
				 a2.innerText = "Media o nas";
				 td2.appendChild(a2);
				 
				 var a3 = document.createElement('a');
				 a3.setAttribute('href', 'index.php?id=15');
				 a3.setAttribute('style','text-decoration:none; color:#FFFFFF; font-family:arial;')
				 a3.innerText = "Powiedzieli o nas";
				 td3.appendChild(a3);
				 
				 var a4 = document.createElement('a');
				 a4.setAttribute('href', 'index.php?id=16');
				 a4.setAttribute('style','text-decoration:none; color:#FFFFFF; font-family:arial;')
				 a4.innerText = "Materiały multimedialne";
				 td4.appendChild(a4);

				 var a5 = document.createElement('a');
				 a5.setAttribute('href', 'index.php?id=17');
				 a5.setAttribute('style','text-decoration:none; color:#FFFFFF; font-family:arial;')
				 a5.innerText = "Nasze rozmowy";
				 td5.appendChild(a5);

				

				
				 
				 tr.appendChild(td1);
				 tr.appendChild(td2);
				 tr.appendChild(td3);
				 tr.appendChild(td4);
				 tr.appendChild(td5);
				 tr.appendChild(td6);
			
				 
				 
				 var tblBody = document.createElement("tbody");
				 tblBody.appendChild(tr);
				 table.appendChild(tblBody);
				
			 }
			
			 else 
			 {
					var table=document.getElementById('mainTable');
					table.deleteRow(0);
					var y=table.insertRow(0);
					table.childNodes[1].childNodes[1].setAttribute("style","width:550px;height:40px;");
					y.innerHTML='<td style="width:40px;"></td><td style="width:160px; font-weight:bold; font-size:13px; color:#FFFFFF; align:center;"><a href="index.php?id=14" style="text-decoration:none; color:#FFFFFF; font-family:arial;">Media o nas</a></td>'+ 
					'<td style="width:200px; font-weight:bold; font-size:13px; color:#FFFFFF; align:center;"><a href="index.php?id=15" style="text-decoration:none; color:#FFFFFF; font-family:arial;">Powiedzieli o nas</a></td>'+ 
					'<td style="width:200px; font-weight:bold; font-size:13px; color:#FFFFFF; align:center;"><a href="index.php?id=16" style="text-decoration:none; color:#FFFFFF; font-family:arial;">Materiały multimedialne</a></td>'+
					'<td style="width:120px; font-weight:bold; font-size:13px; color:#FFFFFF; align:center;"><a href="index.php?id=17" style="text-decoration:none; color:#FFFFFF; font-family:arial;">Nasze rozmowy</a></td><td></td>'+
					'<td style="padding-left:85px;font-weight:bold;font-family:arial; font-size:13px; color:#FFFFFF;">Partnerzy</td>';
			}

}

function insRow4()
{
			ie=(document.all)?true:false
			ns=(document.layers)?true:false
			
			 if(ie) 
			 {
				 var table=document.getElementById('mainTable');
				 while ( table.childNodes.length >= 1 )
				  {
					 table.removeChild( table.firstChild );       
				  } 


				 
				 var tr = document.createElement('tr');

				 var td1 = document.createElement('td');
				 td1.setAttribute('id', 'td1');
				 td1.setAttribute('style', 'width:50px;');
				 
				 var td2 = document.createElement('td');
				 td2.setAttribute('id', 'td1');
				 td2.setAttribute('style', 'width:180px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;');
				 
				 var td3 = document.createElement('td');
				 td3.setAttribute('id', 'td1');
				 td3.setAttribute('style', 'width:240px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;');
				 
				 var td4 = document.createElement('td');
				 td4.setAttribute('id', 'td1');
				 td4.setAttribute('style', 'width:250px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;');
				 
				 var td5 = document.createElement('td');
				 td5.setAttribute('id', 'td1');
				 td5.setAttribute('style','padding-left:94px;font-weight:bold;font-family:arial; font-size:13px; color:#FFFFFF;')
				 td5.innerText = "Partnerzy";
					
				 var a2 = document.createElement('a');
				 a2.setAttribute('href', 'index.php?id=18');
				 a2.setAttribute('style','text-decoration:none; color:#FFFFFF; font-family:arial;')
				 a2.innerText = "Praktyki";
				 td2.appendChild(a2);
				 
				 var a3 = document.createElement('a');
				 a3.setAttribute('href', 'index.php?id=19');
				 a3.setAttribute('style','text-decoration:none; color:#FFFFFF; font-family:arial;')
				 a3.innerText = "Prace dyplomowe";
				 td3.appendChild(a3);
				 
				 var a4 = document.createElement('a');
				 a4.setAttribute('href', 'index.php?id=20');
				 a4.setAttribute('style','text-decoration:none; color:#FFFFFF; font-family:arial;')
				 a4.innerText = "Preinkubacja pomysłów naukowych";
				 td4.appendChild(a4);

			

				

				
				 
				 tr.appendChild(td1);
				 tr.appendChild(td2);
				 tr.appendChild(td3);
				 tr.appendChild(td4);
				 tr.appendChild(td5);
			
			
				 
				 
				 var tblBody = document.createElement("tbody");
				 tblBody.appendChild(tr);
				 table.appendChild(tblBody);
				
			 }
			
			 else 
			 {
					var table=document.getElementById('mainTable');
					table.deleteRow(0);
					var y=table.insertRow(0);
					table.childNodes[1].childNodes[1].setAttribute("style","width:550px;height:40px;");
					y.innerHTML='<td style="width:70px;"></td><td style="width:170px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;"><a href="index.php?id=18" style="text-decoration:none; color:#FFFFFF; font-family:arial,helvetica,sans-serif;">Praktyki</a></td>'+ 
					'<td style="width:200px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;"><a href="index.php?id=19" style="text-decoration:none; color:#FFFFFF; font-family:arial,helvetica,sans-serif;">Prace dyplomowe</a></td>'+ 
					'<td style="width:280px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;"><a href="index.php?id=20"" style="text-decoration:none; color:#FFFFFF; font-family:arial,helvetica,sans-serif;">Preinkubacja pomysłów naukowych</a></td><td></td>'+
					'<td style="padding-left:89px;font-weight:bold;font-family:arial; font-size:13px; color:#FFFFFF;">Partnerzy</td>'; 
			 }


	
	
}

function insRow5()
{
	ie=(document.all)?true:false
			ns=(document.layers)?true:false
			
			 if(ie) 
			 {
				 var table=document.getElementById('mainTable');
				 while ( table.childNodes.length >= 1 )
				  {
					 table.removeChild( table.firstChild );       
				  } 
				 var tr = document.createElement('tr');

				 var td1 = document.createElement('td');
				 td1.setAttribute('id', 'td1');
				 td1.setAttribute('style', 'width:50px;');
				 
				 
				 var td2 = document.createElement('td');
				 td2.setAttribute('id', 'td1');
				 td2.setAttribute('style', 'width:240px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;');
				 
				 var td3 = document.createElement('td');
				 td3.setAttribute('id', 'td1');
				 td3.setAttribute('style', 'width:230px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;');
				 
				 var td4 = document.createElement('td');
				 td4.setAttribute('id', 'td1');
				 td4.setAttribute('style', 'width:230px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;');
				 
				 var td5 = document.createElement('td');
				 td5.setAttribute('id', 'td1');
				 td5.setAttribute('style', 'width:230px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;');
				 
				 var td6 = document.createElement('td');
				 td6.setAttribute('id', 'td6');
				 td6.setAttribute('style', 'width:230px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;');
				 
				 var td7 = document.createElement('td');
				 td7.setAttribute('id', 'td6');
				 td7.setAttribute('style', 'width:100px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;');
				 
				 
				 var td8 = document.createElement('td');
				 td8.setAttribute('id', 'td8');
				 td8.setAttribute('style','width:200px;padding-left:51px;font-weight:bold;font-family:arial; font-size:13px; color:#FFFFFF;')
				 td8.innerText = "Partnerzy";
					
				 
				 
				 var a2 = document.createElement('a');
				 a2.setAttribute('href', 'index.php?id=30');
				 a2.setAttribute('style','text-decoration:none; color:#FFFFFF; font-family:arial;')
				 a2.innerText = "Postęp w realizacji wdrażania";
				 td2.appendChild(a2);
				 
				 var a3 = document.createElement('a');
				 a3.setAttribute('href', 'index.php?id=31');
				 a3.setAttribute('style','text-decoration:none; color:#FFFFFF; font-family:arial;')
				 a3.innerText = "PARP ukrywa swoje działania";
				 td3.appendChild(a3);
				 
				 var a4 = document.createElement('a');
				 a4.setAttribute('href', 'index.php?id=32');
				 a4.setAttribute('style','text-decoration:none; color:#FFFFFF; font-family:arial;')
				 a4.innerText = "Wątpliwe projekty";
				 td4.appendChild(a4);

				 var a5 = document.createElement('a');
				 a5.setAttribute('href', 'index.php?id=33');
				 a5.setAttribute('style','text-decoration:none; color:#FFFFFF; font-family:arial;')
				 a5.innerText = "Pomoc prawna dla beneficjentów";
				 td5.appendChild(a5);

				 var a6 = document.createElement('a');
				 a6.setAttribute('href', 'index.php?id=34');
				 a6.setAttribute('style','text-decoration:none; color:#FFFFFF; font-family:arial;')
				 a6.innerText = "PARP wypowiada umowy";
				 td6.appendChild(a6);

				 var a7 = document.createElement('a');
				 a7.setAttribute('href', 'index.php?id=35');
				 a7.setAttribute('style','text-decoration:none; color:#FFFFFF; font-family:arial;')
				 a7.innerText = "Ludzie PARP";
				 td7.appendChild(a7);
				 
				
				 
				 tr.appendChild(td1);
				 tr.appendChild(td2);
				 tr.appendChild(td3);
				 tr.appendChild(td4);
				 tr.appendChild(td5);
				 tr.appendChild(td6);
				 tr.appendChild(td7);
				 tr.appendChild(td8);
				 
				 var tblBody = document.createElement("tbody");
				 tblBody.appendChild(tr);
				 table.appendChild(tblBody);
				 
			 }
			 else
			 {
				 var table=document.getElementById('mainTable');
					table.deleteRow(0);
					var y=table.insertRow(0);
				
						table.childNodes[1].childNodes[1].setAttribute("style","width:550px;height:40px;");
						y.innerHTML='<td style="width:30px;"></td><td style="width:130px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;"><a style="text-decoration:none; color:#FFFFFF; font-family:arial;" href="index.php?id=30" >Postęp w realizacji wdrażania</a></td>'+ 
						'<td style="width:120px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;"><a style="text-decoration:none; color:#FFFFFF; font-family:arial;" href="index.php?id=31">PARP ukrywa swoje działania</a></td>'+ 
						'<td style="width:130px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;"><a style="text-decoration:none; color:#FFFFFF; font-family:arial; text-align:center;" href="index.php?id=32" >Wątpliwe projekty</a></td>'+
						'<td style="width:140px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;"><a style="text-decoration:none; color:#FFFFFF; font-family:arial;" href="index.php?id=33">Pomoc prawna dla beneficjentów</a></td>'+ 
						'<td style="width:140px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;"><a style="text-decoration:none; color:#FFFFFF; font-family:arial;" href="index.php?id=34">PARP wypowiada umowy</a></td>'+ 
						'<td style="width:60px; font-weight:bold; font-size:13px; color:#FFFFFF;align:center;"><a style="text-decoration:none; color:#FFFFFF; font-family:arial;" href="index.php?id=35" >Ludzie PARP</a></td><td></td>'+
						'<td style="padding-left:47px;font-weight:bold;font-family:arial; font-size:13px; color:#FFFFFF;">Partnerzy</td>';
								
			 }
	
}

function empty()
{
	
	
	ie=(document.all)?true:false
	ns=(document.layers)?true:false
	
	 if(ie) 
	 {
	 var table=document.getElementById('mainTable');
		 while ( table.childNodes.length >= 1 )
		  {
			 table.removeChild( table.firstChild );       
		  } 

	 }
	 else
	 {
		var table=document.getElementById('mainTable');

		table.deleteRow(0);
		var y=table.insertRow(0);
	
			table.childNodes[1].childNodes[1].setAttribute("style","width:550px;height:40px;");
			y.innerHTML='<td style="width:670px;color:#000000;">.</td>'+
			'<td style="padding-left:155px;font-weight:bold;font-family:arial; font-size:13px; color:#FFFFFF">Partnerzy</td>'; 
			

	}
	
	
}
