function process()
{


//var string;
//string = "<ul>"
//+ "<li>Czarny</li>"
//+ "<li>Pomarańczowy</li>"
//+ "<li>Różowy</li>"
//+ "</ul>";

//myTekst = document.getElementById("MyTekst");
//myTekst.innerHTML = tekst;



oHello = document.createTextNode("Cześć Kolego! Mam dla Ciebie świetną listę kolorów:");
oUl = document.createElement("ul");

oLiBlack = document.createElement("li");
oBlack = document.createTextNode("Czarny");
oLiBlack.appendChild(oBlack);

oLiOrange = document.createElement("li");
oOrange = document.createTextNode("Pomarańczowy");
oLiOrange.appendChild(oOrange);

oLiPink = document.createElement("li");
oPink = document.createTextNode("Różowy");
oLiPink.appendChild(oPink);

oUl.appendChild(oLiBlack);
oUl.appendChild(oLiOrange);
oUl.appendChild(oLiPink);

myDiv = document.getElementById("myDivElement");
myDiv.appendChild(oHello);
myDiv.appendChild(oUl);
}

function setStyle1()
{
oTable = document.getElementById("table");
oTableHead = document.getElementById("tableHead");
oTableFirstLine = document.getElementById("tableFirstLine");
oTableSecondLine = document.getElementById("tableSecondLine");

oTable.className = "Table1";
oTableHead.className = "TableHead1";
oTableFirstLine.className = "TableContent1";
oTableSecondLine.className = "TableContent1";
}

function setStyle2()
{
oTable = document.getElementById("table");
oTableHead = document.getElementById("tableHead");
oTableFirstLine = document.getElementById("tableFirstLine");
oTableSecondLine = document.getElementById("tableSecondLine");

oTable.className = "Table2";
oTableHead.className = "TableHead2";
oTableFirstLine.className = "TableContent2";
oTableSecondLine.className = "TableContent2";
}

function setStyle3()
{
oKomik = document.getElementById("komika");
oKomik.className = "komik";
}