var TabZnacz = new Array("p");
var RozmCzcionek = new Array( "0pt", "1pt","2pt","3pt","4pt","5pt","6pt","7pt"
,"8pt","9pt","10pt","11pt","12pt","13pt","14pt"
,"15pt","16pt","17pt","18pt","19pt","20pt","21pt"
,"22pt","23pt","24pt","25pt","26pt","27pt","28pt","29pt","30pt");


function ZmienRozmiar( ID,Rozmiar ) {
if (!document.getElementById) return
var Y= null,i,j,X;

if ( !( Y= document.getElementById( ID ) ) ) Y= document.getElementsByTagName( ID )[0];
Y.style.fontSize = RozmCzcionek[ Rozmiar ];
for ( i = 0 ; i < TabZnacz.length ; i++ ) 
	{	
	X =Y.getElementsByTagName( TabZnacz[ i ] );
//	document.writeln(i+' '+cEl+' '+X.length+' '+TabZnacz[i]+'<br>');
	for ( j = 0 ; j < X.length ; j++ ) 
		{
		X[ j ].style.fontfamily = "vendana";
		X[ j ].style.fontSize = RozmCzcionek[Rozmiar];

		}
	}



}
