var rgb_beg, rgb_end, rgb_beg_white, over_spd, out_spd
var dualhex, hex

rgb_beg = [66,215,140]
rgb_beg_white = [128,255,155]
rgb_end = [128,255,128]
over_spd = 15
out_spd = 15

document.onmouseover = domouseover;
document.onmouseout  = domouseout;

dualhex = new Array()
hex = ["0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"]

for(i = 0; i < 256; i++) dualhex[i] = hex[parseInt(i / 16)] + hex[i % 16]

function domouseover() {
  if (document.all && window.event.srcElement.tagName == "A") fade(window.event.srcElement.sourceIndex, 1, window.event.srcElement.className)
}

function domouseout() {
  if (document.all && window.event.srcElement.tagName == "A") setTimeout("fade('" + window.event.srcElement.sourceIndex + "', 0, '" + window.event.srcElement.className + "')", over_spd * over_spd * 2)
}

function fade(element, over, class_name) {
  if(over) {
		if(class_name == "white") beg = rgb_beg_white;
		else beg = rgb_beg;
    end = rgb_end;
    spd = over_spd;
  }
  else {
		if(class_name == "white") end = rgb_beg_white;
		else end = rgb_beg;
    beg = rgb_end;
    spd = out_spd;
  }
  for(i = 0; i <= spd; i++)
    setTimeout("document.all[" + element + "].style.color = '#"
     + dualhex[Math.floor(beg[0] * ((spd - i) / spd) + end[0] * (i / spd))]
     + dualhex[Math.floor(beg[1] * ((spd - i) / spd) + end[1] * (i / spd))]
     + dualhex[Math.floor(beg[2] * ((spd - i) / spd) + end[2] * (i / spd))] + "';",  i * spd);
}

function Validate(form)
{
	var msg = "Proszę wypełnić pola kto i email !";
	var kto = document.forms[0].kto.value;
	var poczta = document.forms[0].poczta.value;

  	if (kto == "" || kto == null || poczta == "" || poczta == null)
  	{
  		alert (msg);
  		return false;
  	}
}

function Validate2(form)
{
	var msg = "Proszę wypełnić pola email i treść !";
	var tresc = document.forms[0].tresc.value;
	var poczta = document.forms[0].poczta.value;

  	if (tresc == "" || tresc == null || poczta == "" || poczta == null)
  	{
  		alert (msg);
  		return false;
  	}
}

function Validate_en(form)
{
	var msg = "Fiels name and emial are obligatory !";
	var kto = document.forms[0].kto.value;
	var poczta = document.forms[0].poczta.value;

  	if (kto == "" || kto == null || poczta == "" || poczta == null)
  	{
  		alert (msg);
  		return false;
  	}
}

function Validate2_en(form)
{
	var msg = "Fiels email and contents are obligatory !";
	var tresc = document.forms[0].tresc.value;
	var poczta = document.forms[0].poczta.value;

  	if (tresc == "" || tresc == null || poczta == "" || poczta == null)
  	{
  		alert (msg);
  		return false;
  	}
}

// OKIENKA ###########################################################################

function okienko(plik,w,h)
{
if(window.screen){
 aw=screen.availWidth;
 ah=screen.availHeight;
}else{
 aw=640;
 ah=450;
}

ustawienia=
 "left=" + (aw-w)/2 + ","
 +"top=" + (ah-h)/2 + ","
 +"screenX=" + (aw-w)/2 + ","
 +"screenY=" + (ah-h)/2 + ","
 +"width=" + w + ","
 +"height=" + h + ","
 +"innerWidth=" + w + ","
 +"innerHeight=" + h + ","
 +"toolbar=no,"
 +"location=no,"
 +"directories=no,"
 +"status=no,"
 +"menubar=no,"
 +"scrollbars=no,"
 +"resizable=no"

 noweOkienko = window.open(plik,'obrazek',ustawienia);
 noweOkienko.resizeTo(w,h+29);
 noweOkienko.focus();
}

function okienko2(plik,w,h)
{
if(window.screen){
 aw=screen.availWidth;
 ah=screen.availHeight;
}else{
 aw=640;
 ah=450;
}

ustawienia=
 "left=" + (aw-w)/2 + ","
 +"top=" + (ah-h)/2 + ","
 +"screenX=" + (aw-w)/2 + ","
 +"screenY=" + (ah-h)/2 + ","
 +"width=" + w + ","
 +"height=" + h + ","
 +"innerWidth=" + w + ","
 +"innerHeight=" + h + ","
 +"toolbar=no,"
 +"location=no,"
 +"directories=no,"
 +"status=no,"
 +"menubar=no,"
 +"scrollbars=yes,"
 +"resizable=no"

 noweOkienko = window.open(plik,'obrazek',ustawienia);
 noweOkienko.resizeTo(w,h+29);
 noweOkienko.focus();
}

// funkcja kontroli, czy zmienna tekstowa zawiera dozwolone znaki

// funkcja wysylajaca formularz do serwera WebCallCenter
function wyslijformularz()
{

	// jesli sa bledy w formularzu - nie wysylamy go
	if (!kontrola_form())
		return; 
	else
	  {
	    document.forms['formularz'].submit();
      }
      
}

// funkcja walidacji danych
function kontrola_form()
{
Wzor_email  =/^[0-9a-zA-Z._-]+\@[0-9a-zA-Z_-]+\.[0-9a-zA-Z._]+$/;
// zmienna okreslajaca dozwolone znaki w e-mail'u


var blad_imie	    = "...Podaj swoje imię!";
var blad_email		= "...Podaj poprawny adres e-mail!";
var blad_tresc		= "...Wpisz tre¶ć zapytania!";

var imie			= document.forms['formularz'].imie.value;
var email			= document.forms['formularz'].email.value;
var tresc			= document.forms['formularz'].tresc.value;


// weryfikacja pola firma
text = imie;
if (text.length==0)
{
  document.forms['formularz'].imie.focus(); 
  document.forms['formularz'].imie.select();
  alert(blad_imie); 
  return false;	
}

// weryfikacja pola email
    text = email;
    if (Wzor_email.test(text)!=true)
	    {
	      alert(blad_email);
		  document.forms['formularz'].email.focus(); 
		  document.forms['formularz'].email.select();
		  return false;
		}

// weryfikacja pola tresc
text = tresc;
if (text.length==0)
{
  document.forms['formularz'].tresc.focus(); 
  document.forms['formularz'].tresc.select();
  alert(blad_tresc); 
  return false;	
}

   
	// jest ok zwracamy true

	return true; 

 }

// TEXT DNIA ###################################################################################3

//skrypt pochodzi z zasobów
//www.dhtml.helion.pl

quotes = new Array(45);
authors = new Array(6);
quotes[0] = "...herb to znak dziedziczny w rodzie szlacheckim używany jako pieczęć, umieszczany na tarczach i chorągwiach.";
//authors[0] = "...Sprinkle.";
quotes[1] = "...herb to także godło państwa, ziemi, miasta lub instytucji umieszczany na flagach, pieniądzach...";
quotes[2] = "...herb pierwotnie służył do odróżnienia na polu walki wojujących ze sobą stron.";
quotes[3] = "...geneza herbu jest ściśle związana z uzbrojeniem - arma, armoires, (coat of) arms, wappen (waffen).";
quotes[4] = "...herb jako znak osoby, później rodu rozpowszechnił się w zachodniej Europie już w XII wieku, ale jako znak rodu znany był w starożytności.";
quotes[5] = "...dzisiejszy dzień jest bardzo dobry do zamówienia przez Ciebie herbu...";
quotes[6] = "...wyróżnikiem w hierarchii feudalnej był malowany kształt korony.";
quotes[7] = "...na turniejach rycerskich heroldowie sprawdzali, czy noszący dany herb ma do tego prawo.";
quotes[8] = "...herold na dworach panujących początkowo był wywoływaczem, dopiero później stał się znawcą herbów i osobą odpowiedzialną za poprawność herbów.";
quotes[9] = "...w Polsce przyjmowanie herbu jako znaku rodu nastąpiło między XIII a XV wiekiem.";
quotes[10] = "...oprócz wspólnoty terytorialnej na powstanie i spoistość rodu genealogicznego miał wpływ podział wojsk na chorągwie.";
quotes[11] = "...wystawiano chorągwie ziemskie i chorągwie rodów, które trzymali w bitwach chorążowie.";
quotes[12] = "...chorągwie zwykle przechowywano w kościołach.";
quotes[13] = "...poddani (wasale) często przyjmowali herb swoich seniorów.";
quotes[14] = "...zawołanie było głosowym odpowiednikiem herbu, zwłaszcza na polu walki.";
quotes[15] = "...herb zawiera tarczę pokrytą barwą z wizerunkiem godła, hełm, koronę oraz klejnot.";
quotes[16] = "...herby to ustalone wg określonych reguł oznaki osób, rodzin, korporacji, miast, prowincji oraz państw.";
quotes[17] = "...umieszczenie godła na tarczy spowodowało, że stronę herbu określa się z pozycji trzymającego.";
quotes[18] = "...kształt tarczy herbu podlega zmianom występującym w sztuce danego okresu.";
quotes[19] = "...godło (figura heraldyczna) to zasadniczy element herbu umieszczony na tarczy herbowej.";
quotes[20] = "...godła na tarczy zawsze rozmieszczone są w sposób symetryczny względem osi tarczy.";
quotes[21] = "...najczęściej używanym podziałem tarczy jest podział w pas (poziomo) lub w słup (pionowo).";
quotes[22] = "...tarcza herbowa to zasadnicza część herbu; pokryta barwą i wizerunkiem godła.";
quotes[23] = "...tarcze są jednopolowe lub wielopolowe (typowo od 2 do 5 pól) a ich kolejność jest ściśle określona.";
quotes[24] = "...heraldyczne barwy (tynktury) to kolory: czerwień, błękit, czerń i zieleń, oraz metale: srebro i złoto w polskiej heraldyce metale: srebro zastąpiono kolorem białym, złoto żółtym.";
quotes[25] = "...w grafice czarno-białej kolory zastępuje się szrafirunkiem, czyli graficznym zobrazowaniem barw .";
quotes[26] = "...figury heraldyczne dzielą się na figury zaszczytne i uszczerbione oraz godła właściwe.";
quotes[27] = "...figury zaszczytne powstały poprzez proste cięcia tarczy od krawędzi do krawędzi w słup, pas, skos, klin, etc. .";
quotes[28] = "...figury uszczerbione to figury geometryczne położone luzem na tarczy.";
quotes[29] = "...godła właściwe przedstawiają m.in. sprzęty gospodarskie, uzbrojenie, fragmenty architektury, ciała niebieskie, elementy flory i fauny..";
quotes[30] = "...heraldyka to nauka pomocnicza historii badająca początki, rozwój, znaczenie prawne oraz kształtowanie plastyczne herbów.";
quotes[31] = "...Heroldia Królestwa Polskiego (1836-61) to urząd rozpatrujący i zatwierdzający dowody szlachectwa.";
quotes[32] = "...herbarz czyli armoriał to księga zawierająca zbiór i opis herbów oraz rodowody szlachty.";
quotes[33] = "...genealogia to nauka pomocnicza historii badająca stosunki pokrewieństwa między ludźmi, pochodzenie i dzieje rodzin oraz określająca daty narodzin, ślubów i zgonów.";
quotes[34] = "...genealogia to historia rodu pisana albo przekazywana w tradycji ustnej.";
quotes[35] = "...klejnot szlachecki to część herbu umieszczona nad hełmem lub koroną stanowiąca powtórzenie godła lub odrębny znak.";
quotes[36] = "...sfragistyka (sigillografia) to nauka pomocnicza historii zajmująca się badaniem pieczęci jako źródła historycznego.";
quotes[37] = "...drzewo genealogiczne, drzewo rodowe to graficzne zobrazowanie rozwoju rodowego w postaci pnia, od którego odgałęziają się poszczególne linie rozwojowe.";
quotes[38] = "...labry to pozostałości opończy okrywającej hełm podczas wypraw krzyżowych; obecnie ozdoby herbu w postaci kawałków tkaniny.";
quotes[39] = "...labry występują w kolorze tarczy a podbite są metalem przeważającym w godle.";
quotes[40] = "...Szymon Okolski żyjący w latach 1580-1653, dominikanin, historyk i heraldyk jest autorem herbarza Orbis Polonus.";
quotes[41] = "...Jan Długosz żyjący w latach 1415-1480, kanonik krakowski, historyk jest autorem pierwszych Kronik Królestwa Polskiego czyli Historia Polonica i wniósł duży wkład w opisy rodów polskich.";
quotes[42] = "...Kasper Niesiecki żyjący w latach 1682-1744, jezuita, genealog jest autorem herbarza Korona Polska, w późniejszych latach wznowionego i uzupełnionego jako Herbarz polski.";
quotes[43] = "...Juliusz Ostrowski żyjący w latach 1854-1917, hrabia, heraldyk jest autorem Księgi herbowej rodów polskich oraz wydawcą Odmian herbowych Chrząńskiego.";
quotes[44] = "...Seweryn Uruski żyjący w latach 1814-1890, heraldyk i genealog jest autorem herbarza Rodzina, herbarza szlachty polskiej.";

// losowanie liczby
index = Math.floor(Math.random() * quotes.length);

quotes1 = new Array(45);
authors1 = new Array(6);
quotes1[0] = "...a coat of arms is the heraldic emblem of a noble family, appearing on shields and banners.";
quotes1[1] = "...a coat of arms is also the emblem of a country, region, city or institution, appearing on flags, coins...";
quotes1[2] = "...coats of arms were originally used on the battlefield to distinguish between friend and foe.";
quotes1[3] = "...the origin of coats of arms is closely associated with arms - arma, armoires, (coat of) arms, wappen (waffen).";
quotes1[4] = "...as personal emblems, and later family emblems, coats of arms were  widely used in Western Europe in the 12th century, but as family emblems they were already known in antiquity.";
quotes1[5] = "...today's an excellent day for you to order your coat of arms...";
quotes1[6] = "...the painted shape of a crown was a distinguishing mark in feudal hierarchy.";
quotes1[7] = "...at tournaments, heralds checked that the bearer of a particular coat of arms was entitled to do so.";
quotes1[8] = "...at first, heralds serving at the courts of rulers were merely criers. Only later did they become heraldists and persons responsible for their accuracy.";
quotes1[9] = "...in Poland, coats of arms began to be used by family members between the 13th and 15th centuries.";
quotes1[10] = "...apart from territorial community, the emergence and cohesion of a genealogical family was influenced by the division of armies into standards.";
quotes1[11] = "...there were landholders' standards and family standards, held during battle by standard-bearers.";
quotes1[12] = "...in peacetime, standards were normally kept inside churches.";
quotes1[13] = "...subjects (vassals) usually adopted the coat of arms of their lord.";
quotes1[14] = "...the call was the vocal equivalent of the coat of arms, especially on the battlefield.";
quotes1[15] = "...a coat of arms comprises a coloured shield with a charge, helm, crown or gem.";
quotes1[16] = "...coats of arms are the emblems of persons, families, companies, cities, provinces and countries, drawn according to fixed rules.";
quotes1[17] = "...when a coat of arms was placed on a shield, its positioning was from the point of view of the bearer.";
quotes1[18] = "...the shape of the shield changed according to the artistic taste  of a given period.";
quotes1[19] = "...the charge (heraldic figure) is a basic part of the coat of arms, located on the shield.";
quotes1[20] = "...the charge on a shield is always symmetrical with regard to the axis of the shield.";
quotes1[21] = "...the most common partitions are per fess (horizontal) or per pale (vertical).";
quotes1[22] = "...the shield is the basic part of the coat of arms; it is coloured and bears a charge.";
quotes1[23] = "...shields can have either one field or several fields (typically 2 to 5), and their order is strictly defined.";
quotes1[24] = "...the classic colours in heraldry (tinctures) are: red (gules), azure, black (sable), green (vert) and purple (purpure), as well as the metals silver (argent) and gold (or). In Poland, silver was replaced by white and gold by yellow.";
quotes1[25] = "...heraldic colours also include furs: ermine and vair. In time, the natural body colour also became a heraldic colour.";
quotes1[26] = "...in black and white illustrations, colours are represented by cross-hatching.";
quotes1[27] = "...heraldic figures are divided into partitions and ordinaries.";
quotes1[28] = "...partitions were created by simply dividing the shield from edge to edge per pale, per fess, per bend etc..";
quotes1[29] = "...ordinaries are geometrical figures placed loosely on the shield.";
quotes1[30] = "...crests represent domestic equipment, arms, architectural features, heavenly bodies, flora and fauna.";
quotes1[31] = "...heraldry is a discipline that supports history, used to research the original development, legal significance and artistic shape of coats of arms.";
quotes1[32] = "...The Heraldry of the Kingdom of Poland (1836-61) was an office which considered and approved signs of nobility.";
quotes1[33] = "...a directory of coats of arms is a book containing illustrations and descriptions of coats of arms and of the origins of the nobility.";
quotes1[34] = "...genealogy is a discipline which supports history by examining the relationships between people and their origin and history of families and determining dates of birth, marriage and death.";
quotes1[35] = "...genealogy is the history of a family, written or conveyed by oral tradition.";
quotes1[36] = "...a noble gem is a part of the coat of arms located above the helm or crown, either a repetition of the crest or a separate sign.";
quotes1[37] = "...Sigillography is a discipline which supports history by examining seals as sources of history.";
quotes1[38] = "...a genealogical or family tree is a graphic representation a family's development in the form of a tree with branches.";
quotes1[39] = "...garters are vestiges of the cloak that covered the hem during the Crusades; today the coat of arms is decorated with pieces of fabric.";
quotes1[40] = "...garters have the same colour as the shield, with elements of the metal that dominates the crest.";
quotes1[41] = "...Szymon Okolski, 1580-1653, Dominican friar, historian and heraldist, is the author of the Orbis Polonus directory of coats of arms.";
quotes1[42] = "...Jan Długosz, 1415-1480, canon of Cracow and historian, wrote the first Chronicles of the Kingdom of Poland, in other words the Historia Polonica, and made a great contribution to descriptions of Polish families.";
quotes1[43] = "...Kasper Niesiecki, 1682-1744, a Jesuit and genealogist, wrote the Korona Polska directory of coats of arms, subsequently updated and supplanted by the Herbarz Polski.";
quotes1[44] = "...Juliusz Ostrowski, 1854-1917, count and heraldist, wrote the armorial of Polish families and published the armorial variations of Chrząński and other heraldic works.";
quotes1[45] = "...Seweryn Uruski, 1814-1890, heraldist and genealogist, wrote the Rodzina directory of coats of arms of the Polish nobility.";

// losowanie liczby
index = Math.floor(Math.random() * quotes1.length);

quotes2 = new Array(45);
authors2 = new Array(6);
quotes2[0] = "...Wappen als vererbliches Abzeichen eines Adelsgechlechts als Siegel benutzt und an Schilden und Bannern angebracht wurde.";
quotes2[1] = "...Wappen auch als Abzeichen von Staaten, Landesteilen, Städten und Körperschaften auf Fahnen, Banknoten etc. dargestellt wurden.";
quotes2[2] = "...Wappen ursprünglich dazu dienten, die miteinander kämpfenden Seiten auf dem Schlachtfeld erkennbar zu machen.";
quotes2[3] = "...die Wappengeschichte eng mit der Bewaffnung verbunden ist  - arma, armoires, (coat of) arms, wappen (Waffen).";
quotes2[4] = "...Wappen als Kennzeichen einer Person, dann einer Familie in Westeuropa seit dem 12. Jahrhundert verbreitet wurde, jedoch als Familienkennzeichen im Altertum bekannt war.";
quotes2[5] = "...heute der richtige Tag für Sie ist, um ein Wappen zu bestellen...";
quotes2[6] = "...in der feudalen Hierarchie die gemalte Krone als Kennzeichen diente.";
quotes2[7] = "...bei Ritterturnieren Herolde prüften, ob der Schildträger berechtigt war, das Wappen zu führen.";
quotes2[8] = "...Herolde an herrschenden Höfen zuerst Ausrufer waren, erst später zu Wappenkennern wurden und für die Richtigkeit der Wappen verantwortlich waren.";
quotes2[9] = "...in Polen Wappen als Familienkennzeichen zwischen dem 13  und 15. Jahrhundert angenommen wurden.";
quotes2[10] = "...die Entstehung und der Zusammenhalt eines Geschlechts neben der territorialen Gemeinschaft auch durch die Einteilung des Heeres in Fähnlein beeinflußt wurde.";
quotes2[11] = "...die vom Landadel und einzelnen Adelsgeschlechtern aufgestellten Fähnlein ihre Banner hatten, die während der Schlacht vom Fahnenträger getragen wurden.";
quotes2[12] = "...Fahnen meist in Kirchen aufbewahrt wurden.";
quotes2[13] = "...Untertanen (Vasallen) oft das Wappen ihrer Senioren annahmen.";
quotes2[14] = "...der Ruf die lautliche Entsprechung des Wappens, besonders auf dem Schlachtfeld war.";
quotes2[15] = "...Teile des Wappens mit Farbe bedecktes Schild mit Wappenbild, Helm, Krone und Kleinod sind.";
quotes2[16] = "...Wappen nach vorgeschriebenen Regeln gestaltete Kennzeichen von Personen, Familien, Körperschaften, Städten, Provinzen und Staaten sind.";
quotes2[17] = "...durch entsprechende Anbringung des Wappenbildes am Schild die Wappenseite aus der Position des Schildträgers bezeichnet wird.";
quotes2[18] = "...die Form des Wappenschildes entsprechend der Kunstrichtung der jeweiligen Periode geändert wird.";
quotes2[19] = "...das Wappenbild (heraldische Figur) das Hauptelement des Wappens ist und auf dem Wappenschild dargestellt wird.";
quotes2[20] = "...das Wappenbild am Schild immer achssymmetrisch angebracht wird.";
quotes2[21] = "...das Schild meist in Streifen (horizontal) oder Pfahl (vertikal) eingeteilt ist.";
quotes2[22] = "...das Wappenschild der mit Farbe und Wappenbild bedeckte Hauptteil des Wappens ist.";
quotes2[23] = "...Schilde aus einem oder mehreren Feldern bestehen (typisch sind 2 bis 5 Felder) und deren Reihenfolge vorgeschrieben ist.";
quotes2[24] = "...heraldische Farben (Tinkturen) Rot, Blau, Schwarz und Grün sowie Metalle: Silber und Gold sind und in der polnischen Heraldik Silber durch Weiß und Gold durch Gelb ersetzt wurden.";
quotes2[25] = "...in der Schwarzweiß-Grafik Farben durch Schraffierung, d.h. durch grafische Darstellung der Farben ersetzt werden.";
quotes2[26] = "...heraldische Figuren in ehrenhafte und geschädigte Figuren sowie richtige Bilder eingeteilt werden.";
quotes2[27] = "...ehrenhafte Figuren durch einfaches Schneiden des Schildes in Streifen, Pfahl, Keil, schräg etc. entstanden sind.";
quotes2[28] = "...geschätigte Figuren am Schild lose liegende geometische Figuren sind.";
quotes2[29] = "...richtige Wappenbilder u.a. Hausgeräte, Rüstungsstücke, architektonische Details, Himmelskörper, Elemente der Flora und Fauna darstellen.";
quotes2[30] = "...die Wappenkunde die Hilfswissenschaft der Geschichte ist und sich mit der Entstehung, Entwicklung, rechtlichen Bedeutung und Gestaltung von Wappen befaßt.";
quotes2[31] = "...das Heroldsamt des Königreichs Polen (1836-1861) die dem Adel zustehenden Standesgrade und Wappen prüfte und bestätigte.";
quotes2[32] = "...das Wappenbuch ein Verzeichnis und Beschreibungen von Adelswappen und Familiengeschichten  enthält.";
quotes2[33] = "...die Genealogie die Hilfswissenschaft der Geschichte ist und sich mit dem Verwandschaftsverhältnis zwischen Menschen, der Herkunft und Geschichte von Familien befaßt und Geburts-, Trauungs- und Sterbedaten ermittelt.";
quotes2[34] = "...die Familiengeschichte die schriftlich oder mündlich überlieferte Geschichte eines Geschlechts ist.";
quotes2[35] = "...adliges Kleinod, das als Wappenteil unter dem Helm oder der Krone erscheint, das Wappenbild wiederholt oder ein separates Zeichen ist.";
quotes2[36] = "...die Siegelkunde die Hilfswissenschaft der Geschichte ist und sich mit Siegeln als historischer Quelle befaßt.";
quotes2[37] = "...der Stammbaum die grafische Darstellung der Familienentwicklung in Form eines Stammes mit vielverzweigten Ästen der einzelnen Entwicklungslinien ist.";
quotes2[38] = "...Wappenmantel Überreste des Mantels sind, der während der Kreuzzüge den Helm bedekte und heute einige Stoffetzen als Wappenzierden dienen.";
quotes2[39] = "...der Wappenmantel dieselbe Farbe wie das Schild hat und auf dem im Wappenbild überwiegenden Metall erscheint.";
quotes2[40] = "...Szymon Okolski (1580-1653), Dominikaner, Historiker und Wappenforscher, Autor des Wappenbuches 'Orbis Polonus' ist .";
quotes2[41] = "...Jan Długosz (1415-1480), Krakauer Domherr und Historiker, Autor der ersten Chroniken des Königreichs Polen. 'Historia Polonica' ist und einen großen Beitrag zur Beschreibung polnischer Adelsgeschlechter geleistet hat.";
quotes2[42] = "...Kasper Niesiecki (1682-1744), Jesuit und Stammbaumforscher, Autor des Wappenbuches 'Korona Polska' (Die polnische Krone) ist, das später ergänzt und als 'Herbarz polski' (Das polnische Wappenbuch) herausgegeben wurde.";
quotes2[43] = "...Juliusz Ostrowski (1854-1917), Graf, Wappenforscher, Autor des 'Księga herbowa rodów polskich' (Wappenbuch der polnischen Adelsgeschlechter) und Herausgeber der 'Odmiany herbowe' 'Wappenvarianten' von Chrząński ist.";
quotes2[44] = "...Seweryn Uruski (1814-1890), Wappen- und Stammbaumforscher, Autor des 'Rodzina, herbarz szlachty polskiej' (Familie, Wappenbuch des polnischen Adels ist.";

// losowanie liczby
index = Math.floor(Math.random() * quotes2.length);


