function externalLinks() {	if (!document.getElementsByTagName) return;	var anchors = document.getElementsByTagName("a");	for (var i=0; i<anchors.length; i++) {		var anchor = anchors[i];		if (anchor.getAttribute("href")) {			switch (anchor.getAttribute("rel")) {				case "external":					anchor.target = "_blank";					break;				case "popup":					anchor.href = "javascript:doPopup('" + anchor.href + "');";					break;				case "tisk":					anchor.href = "javascript:doPrint('" + anchor.href + "');";					break;			}		}	}}function doPopup(url) {	var o = window.open("about:blank", "popup", "width=250,height=150,fullscreen=0,scrollbars=0,toolbar=0,location=0,directories=0,status=0,menubar=0,copyhistory=0");	var s = "<html>\n";	s += "<head>\n";	s += "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-1250\" />\n";	s += "<meta http-equiv=\"Content-language\" content=\"cs\" />\n";	s += "<meta http-equiv=\"expires\" content=\"-1\" />\n";	s += "<meta http-equiv=\"pragma\" content=\"no-cache\" />\n";	s += "<meta http-equiv=\"cache-control\" content=\"private\" />\n";	s += "<title>Obrázek / bazar.ooo.cz</title>\n";	s += "</head>\n";	s += "<body style=\"margin:0\">\n";	s += "<h1 style=\"font-size:20px;font-family:sans-serif;width:250px;z-index:0;position:absolute;text-align:center;line-height:150px;\">Nahrávám obrázek...</h1>\n";	s += "<a href=\"javascript:self.close();self.opener.focus();\"><img name=\"obrazek\" src=\"" + url + "\" style=\"border:0;z-index:1;position:absolute;\" onload=\"resizeTo(this.width, this.height+50)\" alt=\"Kliknutím zavřete okno\" /></a>\n";	s += "</body>\n";	s += "</html>";	o.document.write(s);	o.focus();}function doPrint(url) {	var o = window.open(url, "print", "width=550,height=400,fullscreen=0,scrollbars=1,toolbar=0,location=0,directories=0,status=0,menubar=1,copyhistory=0");	o.focus();}window.onload = externalLinks;