// Vytvoření odkazu pro tisk
function LinkPrint(sId) {
    var aTitle = explodeTitle(sId);
    var a=document.createElement('a');
    // Atributy odkazu
    a.setAttribute('href','javascript:window.print();');
    a.setAttribute('title',aTitle[1] ? aTitle[1] : 'Vytisknout tuto stránku');
    // text odkazu
    var text=document.createTextNode(aTitle[0] ? aTitle[0] : 'Tisknout');
    a.appendChild(text);
    getID(sId).appendChild(a);
}

// Zkraceny zapis pro document.getElementById
function getID(sId) {
    return document.getElementById(sId);
}


// Rozdelit title podle znaku
function explodeTitle(sId) {
    var aReport = new Array();
	if(getID(sId)) {
		aReport = getID(sId).title.split("|");
	}
	return aReport;
}

// Zpracovani udalosti po naceni stranky
window.onload = Init;
function Init() {
    getID('print')      ? LinkPrint('print') : false;
}
