// Funkce pro vytvoření nového okna
function NEWwin(url,name,props)
{
  window.open (url,"name",props);
}

function ShowImage(ktery,TTT,ostatni){
obrazek=window.open('',"PragueSecret",ostatni);
obrazek.blur();
obrazek.document.open();
obrazek.document.write("<html><head><title>"+TTT+"</title></head>");
obrazek.document.write("<body leftmargin='0' topmargin='0' >");
obrazek.document.write("<img src="+ktery+" id='obr'onclick=window.close() this.focus();>");
obrazek.document.write("</body><html>");
obrazek.document.close();
obrazek.focus();
}

// Funkce pro překlopení emailových adres - antispam
function mai_lto(f) {
	var re = /\[at]/gi;
	var addr = f.innerHTML.replace(re,'@');
	f.href = 'mai'+'lt'+'o:'+addr;
	return true;
}