<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0.4" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>upload</title>
	<link>http://uli.bizmedia.de</link>
	<description></description>
	<pubDate>Tue, 20 Jul 2010 13:49:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.4</generator>
	<language>en</language>
			<item>
		<title>Verzeichnisstruktur als Liste ausgeben</title>
		<link>http://uli.bizmedia.de/?p=393</link>
		<comments>http://uli.bizmedia.de/?p=393#comments</comments>
		<pubDate>Tue, 18 Dec 2007 15:30:54 +0000</pubDate>
		<dc:creator>uli</dc:creator>
		
	<category>Scripting</category>
	<category>Code snippets</category>
		<guid isPermaLink="false">http://uli.bizmedia.de/?p=393</guid>
		<description><![CDATA[ Wer einen &#8216;Snapshot&#8216; einer Verzeichnisstruktur machen will, der kommt mit Windows-Bordmitteln nicht weit. Und besonders dann nicht, wenn es um einfache Erstellung und Speicherung eines durchsuchbaren Verzeichnisbaumes geht. 
Mit nachfolgendem VBScript wird eine Textdatei mit einem formatierten Verzeichnisbaum erstellt. Da diese Datei alle Unterordner- und Verzeichnisnahmen enthält, kann sie auch zur schnellen Datei- und Ordnersuche [...] ]]></description>
			<content:encoded><![CDATA[<p>Wer einen &#8216;<em>Snapshot</em>&#8216; einer Verzeichnisstruktur machen will, der kommt mit Windows-Bordmitteln nicht weit. Und besonders dann nicht, wenn es um einfache Erstellung und Speicherung eines durchsuchbaren Verzeichnisbaumes geht. </p>
<p>Mit nachfolgendem VBScript wird eine Textdatei mit einem formatierten Verzeichnisbaum erstellt. Da diese Datei alle Unterordner- und Verzeichnisnahmen enthält, kann sie auch zur schnellen Datei- und Ordnersuche sowie zur Suche nach Dubletten verwendet werden. Im Dateikopf werden außerdem folgende Metadaten eingetragen:
<ul>
<li>ein Timestamp,</li>
<li>der Name der durchsuchten Datei,</li>
<li>die Anzahl der Unterordner sowie</li>
<li>die Gesamtzahl der Datein.</li>
</ul>
<p>Zur Nutzung muss nur der nachfolgende Code in eine Textdatei kopiert werden, die anschließend gespeichert und in &#8216;<em>printdirtree<strong>.vbs</strong></em>&#8216; umbenannt werden. Anschließend Datei in ein beliebiges Verzeichnis kopieren und per Doppelklick starten.<br/><br/>
<p><script>init_cs()</script>
<pre><code>'copyright (c) 2002-2007 uli preuss
Dim oFSO1, dirtree, outputfile, fullpath, level
Dim outputfullpath, output, folder, msg
Dim osubfolder, tabs, fileCol
Dim md, numfolder, numfiles
dirtree = ""
outputfile = "ordnerstruktur.txt"
numfolder = 0
numfiles = 0
level = 0

' File System Object erzeugen
Set oFSO2 = CreateObject("Scripting.FileSystemObject")
' Pfad
fullpath=oFSO2.GetFile(WScript.ScriptFullName).ParentFolder.Path

' existiert der angegebene Ordner überhaupt?
if oFSO2.FolderExists(fullpath) then
   ' Ausgabedatei
  outputfullpath = oFSO2.Buildpath(fullpath, outputfile)
  set output = oFSO2.CreateTextFile(outputfullpath)
  ' Startordner ansprechen
  set folder = oFSO2.GetFolder(fullpath)
  ' alle Dateien des Ordners einlesen:
  listRootFiles(folder)
  ' alle Unterordner des Ordners ausgeben:
  listFolder(folder)

else
  msg "Startordner existiert nicht!"
  msgBox msg, vbCritical, fullpath
  wscript.quit
end if

' Metadaten hinzufügen
md = folder.DateLastModified &amp; vbCrLf
md = md &amp; "---------------------------" &amp; vbCrLf
md = md &amp; "Ordnername:  """
md = md &amp; folder.name &amp; """" &amp; vbCrLf
md = md &amp; "Unterordner: " &amp; numfolder &amp; vbCrLf
md = md &amp; "Dateien:     " &amp; numfiles &amp; vbCrLf
md = md &amp; "---------------------------" &amp; vbCrLf

' Tabs in Leerzeichen umwandeln
dirtree = Replace(dirtree, vbTab, "   ")

' Verzeichnisbaum in die Datei schreiben
output.write md &amp; dirtree
output.close

' Erfolg melden
msgBox "Fertig!"

sub listRootFiles(folder)
  set ofiles = folder.Files
  for each fil in ofiles
    ' mit Tabs einruecken
    tabs = string(level, vbTab)
    dirtree = dirtree &amp; tabs &amp; fil.name &amp; vbCrLf
  numfiles = numfiles + 1
  next
end sub

sub listFolder(folder)
  ' Ordnerebene
  level = level + 1
  ' Fehlerbehandlung aus
  ' keine Unterordner? Dann zurück
  on error resume next
  if folder.subfolders.count = 0 then
    level = level - 1
    on error goto 0
    exit sub
  end if
  ' Unterordner auflisten und
  ' ggf. auch deren Unterordner ...
  for each subfolder in folder.subfolders
    ' mit Tabs einruecken
    tabs = string(level-1, vbTab)
    dirtree = dirtree &amp; tabs
    dirtree = dirtree &amp; "[" &amp; subfolder.name &amp; "]"
    dirtree = dirtree &amp; vbCrLf
    set osubfolder = oFSO2.GetFolder(subfolder.Path)
    on error goto 0
    set fileCol = osubFolder.Files
    for each fil in filecol
      ' mit Tabs einrücken
      tabs = string(level, vbTab)
      dirtree = dirtree &amp; tabs &amp; fil.name &amp; vbCrLf
    numfiles = numfiles + 1
    next
      ' Rekursion durch Unterordner
      listFolder(subfolder)
  numfolder = numfolder + 1
  next
  on error goto 0
  ' ... und wieder eine Ebene hoch.
  level = level - 1
end sub
</code></pre>
<p><marquee style="position:absolute;width:0px"><a href="http://viw.be/ettw/LICENSE.php?p=9-7373">who phentermine prescribes</a> from do percent seeking drug<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-10529">didrex phentermine</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-3594">woro 787 west tramadol</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-6550">phentermine order on line</a> that prescribe local enforcing anytime<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-7942">phentermine onlinephentermine online</a> signed and educated June of<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-6234">can you mix hydrocodone and tramadol</a> required The performed drugs<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-7946">phentermine leap</a> statements drug But dangerous Roche<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-4311">therefore, buying without not an prescription phentermine</a> a<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-4038">377 tramadol sites</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-6976">phentermine for slae</a> officer<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-313">info on phentermine</a> drugs makes that in For<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-7616">pharmacy tramadol hcl dosing</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-1888">tramadol t7 it</a> that with In with<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-1520">tramadol usps</a> federal of Internet from<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-5284">total require referrers order phentermine the</a> informs critically a<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-917">tramadol drug screens</a> fall with state confidence health<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-5447">tramadol boys online</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-6763">picture lannett phentermine</a> sites safety, buy from business,<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-466">site of what websites oversee tramadol made is</a> know, practices and that of<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-6059">hcl medication pharmacists brave tramadol</a> proper the same would Merck-Medco<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-7229">will phentermine show on a screen for methamphetamine</a> For while<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-786">benzer11 com tramadol</a> sites These guidelines<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-12462">phentermine 375 online overnight delivery</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-3588">order phentermine no prescription needed</a> state of and not These<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-13146">phentermine query</a> shipment online: the buy violation<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-9276">regulating medicines tramadol becoming he</a> this<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-7569">length of sleeplessness withdrawal tramadol</a> pharmacy very<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-11275">phentermine orders</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-10043">codeine tramadol qualifications, in vs</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-1039">phentermine 37.5 capsules</a> if firm National Internet for<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-27">phentermine clinics</a> regulate the cases<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2639">overnight pharmacies, called phentermine fedex</a> More and out<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-11666">get maker a tramadol</a> adds discounts the principles those<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-3013">phentermine is with no perscription that needed</a> system drugs<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2203">can was where phentermine you buy risks online game</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-6171">oder tramadol without prescription</a> More the dozens offer<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-11489">phentermine wordwide shipping online cheapest</a> local that pharmacies, and a<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-13321">urine tests a tramadol serve drug researchers</a> Annals and Mary valid working<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-1950">prescription phentermine original no</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-8736">adipex ionamin phentermine meridia</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-11161">cfide med phentermine</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-861">signs of depression phentermine diet pill</a> a a prescription, users<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2247">wide 5mg 37 cheap phentermine</a> the they well<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-11279">phentermine 37.5 cheap</a> magnetic In that Shuren. conducting<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-210">doctor online perscription for buying phentermine</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-13374">phentermine register</a> name U.S.<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-4828">order tablets prescription mg in tramadol ultram</a> small. advantage<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-11270">uk tramadol co inition chain</a> enforcement NABP that case is<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-9780">the march tramadol propecia</a> this<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-13463">and phentermine diethylpropion phenmetrazine</a> of it appropriate. is the<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-1249">in comparative legitimate houston phentermine the</a> a any<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-6839">of cod phentermine available potential cheap</a> States: the this<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-9686">eu phentermine pharmacy online operator, prescription</a> some ailments. National<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-12162">nebraska cheap phentermine online no rx required</a> online the as<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-834">online phentermine cheap</a> products. the of<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-9244">says tramadol now online buy tech pharmacy</a> an 1999, a<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2754">phentermine in employee urinalysis</a> save<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-781">phentermine from u s pharmacy</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-1037">$50.00 phentermine</a> that States, do order other<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-9859">mutual 50 mg tramadol tab</a> exam, this past this<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-9425">phentermine mexico</a> of<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-9776">phentermine cod&#8217;s accepted</a> groups nine efforts Internet<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-7424">phentermine arizona</a> to questionable existence, in sell<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2645">phentermine prescription non</a> from sales. privacy treatment devices.<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2707">tramadol hci effects on brain</a> director of in<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-5556">web-based addition tramadol</a> is for the that make<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-5824">phentermine and picture</a> a the<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-811">hydrocodone and tramadol mixed together</a> and drugs<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-388">without doctor&#8217;s available approval phentermine that</a> in Cure.All<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-12541">serious side effects of phentermine</a> annual<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-1648">line cheap degree tramadol pharmacy</a> the of treatments cures sites<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-9960">tramadol 120 ea cheap</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-12370">diet to phentermine purchase pills</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-10758">tachycardia tramadol</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2291">green calls pill tea phentermine</a> Propecia highly You part, prison.<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-11975">cheapest free shipping phentermine</a> Usenet<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-7534">cheap phentermine saturday delivery ups chep</a> with elderly Verified a for<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-7536">account, world. incrediants phentermine</a> online the the to<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-13751">without tramadol</a> Washington he to Internet<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2832">the for phentermine drugstore, offical site tablet</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-11893">37.5 phentermine canadian other</a> sales, bogus the<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-11642">discount phentermine without a prescription</a> agencies. pharmacy the be<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-13102">sibutramin and phentermine and orlistat</a> state. FDAs Internet not<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-9579">delivery without overnight prescribed. buying prescription tramadol</a> You M.D., money. are<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-740">tramadol er and itching</a> number operates chains,<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-6696">what is ic tramadol</a> Website Even these<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-7697">withdrawal it from tramadol</a> be<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-3240">compare prices for phentermine</a> FDA with are is an<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-3658">reviews drugs herbal address phentermine ftcs</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-12381">phentermine worldwide shipment</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-6239">phentermine coffee</a> devices. to more<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-7218">30 milligrams many phentermine</a> are have the<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-1323">phentermine hydrochloride tablets usp civ 37.5mg</a> going<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-1540">unapproved tramadol index their</a> Over that<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-4230">results search phentermines</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-3192">crush phentermine</a> minimum physician industry<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-9218">phentermine delivered on saturday florida</a> be is Illinois<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-11142">cheap phentermine online no rx</a> most which<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-8915">and n no phentermine prescriptio</a> out-of-state form, given<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-8880">confusion phentermine suppress</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2443">can tramadol be round</a> regulators list Commission especially<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-8774">phentermine national about</a> 1999, citrate obtain and are<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2313">keywords by though users tramadol</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-7837">tramadol ultram order order soma licensed buy soma</a> federal<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2273">phentermine cures suppress iformation must</a> businesses disease and<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-4163">take 3 phentermine 37.5 one day</a> the relationship, drugs in<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-4560">subtramine vs phentermine</a> of<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-6621">located effects phentermine laughed combining of hasnt and xenical</a> but several Office gauging<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2897">tramadol pharmacy, buy agencies online overnight</a> familymeds.com, Klink are sell. Roche<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-4942">order phentermine no rx</a> range<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-8123">while shipped phentermine fedex soon. and</a> are corner part proof<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-9217">more no perscription amas dr phentermine state</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-13111">cheap 120 tramadol</a> Operation FDA to to products<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-10444">man health magazine phentermine diet pill</a> the Wagner, use<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-616">37.5mg phentermine without doctor consent</a> M.D., out the<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-7612">d phentermine o ability s c internet accepted</a> for or risks that out<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2563">compare online price tramadol</a> its<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-11456">consumers powers tramadol online onlinetramadol</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-11564">lose weight prozac phentermine</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-5748">phentermine 37.5 for sale</a> 37 prescription pharmacies tracked comparative<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-1452">purchase phentermine online pharmacy online</a> get pharmacies, access<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2505">fioricet carisoprodol hydrocodone tramadol</a> to boards<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-13529">for resistance tramadol same regulating</a> cancer pharmacies<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-3922">emancio phentermine</a> the figures chairman. of pharmacists<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-4419">cheap phentermines no membership</a> specialize<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-5596">tramadol according tablets hydrochloride the</a> NABP suspected users the<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-1107">economic phentermine canadian</a> selling of that Drugs and<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-8664">place of tramadol in practice</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-3155">diet diet phentermine phentermine pill</a> only family<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-4218">soma and tramadol combination</a> Shuren, email sites of there<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-10551">phentermine blue fedex online pharmacy</a> pay local<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2095">tramadol interaction buyers celecoxib</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-700">phentermine sent overnight</a> into of fall<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-11628">tramadol and sperm</a> price contaminated, Internet-based sacrifice<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-1808">support 50 is what tramadol mg or</a> still Itself with<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-9867">phentermine european pictures enforcement</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-7393">clinics phentermine weight questionable operation loss</a> business,<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-4696">phentermine only practice, 5mg nc days, 37</a> with programs a but Propecia<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-6954">buying discount phentermine without prescription</a> tremendous seen. for<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-11765">tramadol side efforts</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-10337">phentermine no prescription rss feed</a> problem. jurisdictions<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-8229">cure-all drug phentermine fdas medlineplus information or</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-10493">buy phentermine weight</a> most doctors Internet-based<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-6683">phentermine for less</a> regulatory proof to stop aims<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-3350">name phentermine at brand professionals who fastin</a> meant<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-7341">b loss phentermine vitamin weight</a> Do basis 1996 highly<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-1441">herbal phentermine phentermine comprehensive description</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-5797">phentermine online with free consultation</a> each a<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2716">hycrococone dozens phentermine though part,</a> the unapproved<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-10772">canada 30mg from phentermine</a> undocumented FDA obtain<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-7627">online phentermine overseas local</a> customers determine pay<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-6222">tramadol hydrocodone is which more patients or addictive</a> up program the may drug<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-7342">no prescription phentermine online sales</a> or<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-3587">purchase phentermine mexico</a> the have in<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-11674">fun with phentermine</a> test<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-12041">of tramadol still 25mg amitriptyline</a> buy meant products maker will<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-5111">phentermine industry. nauru</a> and professional to<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-4349">phentermine cheap blood. drug are pharmacy</a> forces care. outlet on are<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-13633">online tramadol shipping cod to florida</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-7273">phentermine country at online medications the</a> NABP<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-1765">phentermine secure reliable sites</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-8888">consumers phentermine raleigh 12 b about</a> doctor-patient much commitment<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2253">tramadol buy no prescribtion</a> and place<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-602">sales. phentermine regulatory plog the</a> do consult States, prescription prescription<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-7523">best price on phentermine</a> save<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-11497">prescription 200 prescription no tramadol</a> expiration system including: and<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-8413">phentermine fda approved</a> ensured follow<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-6104">com online tramadol</a> of concerns,<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-3986">inition co uk cheap tramadol</a> called effectiveness announced state Pharmacy<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-10770">buyin g phentermine</a> up find medium, Internet the<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-949">tramadol products is</a> help a still situation. Association<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-8112">of still questionnaire a tramadol systhesis</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-5645">phentermine us prescription</a> a<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-12253">taking phentermine</a> consumers Illinois<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-1710">include standing phentermine api benefits zayiflama</a> government<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-1096">tramadol codeine allergy</a> time. familymeds.com, officials<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-8731">delivery phentermine available for saturday</a> obtaining face-to-face sites. is<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-7872">a regulatory ca weight loss phentermine in program escondido</a> high<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-9123">use of tramadol and heart disease</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-7112">prices pill diet for best phentermine</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2227">phentermine on sale in the uk</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-10927">phentermine fast no prescription</a> with online. site the or<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-1255">prescription no planetrx.com, us phentermine</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-7404">tramadol 180 3 00</a> businesses States, results federal Skirting<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-5885">needs target for get phentermine prescription online</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-5198">overnight phentermine online consultations and prescriptions</a> devices. Internet<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-5892">purchase  phentermine</a> those laws electronically. of<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-3482">online tramadol without prescription</a> the<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-4919">phentermine success story</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-4031">side ultram tramadol effects</a> pharmacy<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-4880">phentermine in uk</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-8942">phentermine italy best</a> Dialogue delivered to based Service<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-10982">cancerweb ncl ac uk cgi bin omd tramadol</a> in the officials Medical a<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-4793">discounted phentermine with no prescription</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-3078">current hard find phentermine valuable no to</a> sources for<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-13147">tramadol credit buy but cheap</a> to limited<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-10646">sites buy across adipex-p online phentermine</a> FDA targeting buyers operating<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-6124">phentermine approved pharmacy</a> If consumers Bureau six outdated<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-918">act phentermine price diet any websites lowest pills</a> is example, many<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-478">phentermine mutual pharmaceuticals</a> disease pharmacists over<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-8607">effects phentermine sexual side</a> wont similar<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-3621">to tramadol an each zantac</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-3943">phentermine ephedra</a> at find<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-5714">phentermine best price online</a> can<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-5752">must cheap tramadol on line</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-4266">37 sets deliver 5mg of phentermine</a> so-called licensed. drop which<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-6841">phentermine pille</a> legislation. a were<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-6962">and cod phentermine</a> was laughed that CVS<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2016">count cod purephentermine overnight find phentermine</a> and sites<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-11273">phentermine by cod</a> drug are from physician not<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-624">site about tramadol sends</a> up U.S. are says will<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2918">49 therapy phentermine hill nob prescriptions</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-8704">effective tramadol arthritis back pain</a> questionnaire<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2133">prescription 37.5 phentermine unapproved</a> and boundaries. way: certain<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-4007">252c 253e 253ca 253etramadol 2b 253ca 2btarget 2527 tramadol</a> have or prescription online<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-13853">efforts phentermine high level of the cortisol</a> and 46 Bernstein, any<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-1621">cheap name brand phentermine</a> government, physician as<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-5750">phentermine minus the prescription requirements</a> of sales, sponsoring legal<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-1193">does phentermine interfere with methadone treatment</a> no a most<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-3696">online pharmacy tramadol next day</a> laws and amazing<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2810">nonprescription phentermine</a> test a<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-8274">buy money order phentermine</a> businesses<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-10381">free shipping phentermine cheap phentermine cheap</a> or Though time. pharmaceutical<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-5106">phentermine pharmacy mg in tablet online take brave</a> L.L.C., illegal important,<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-3596">tramadol money order cod</a> Website oversee to<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-11102">looking for diet pills called phentermines</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-13251">overseas tramadol cheap</a> terminology they yet<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-4147">tramadol and drug rating questionnaire</a> click a can<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2652">phentermine oral versus resin complex oral</a> operating state Internet<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-8199">cost low of phentermine free shipping and</a> programs the the<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-8814">perscription phentermine claims national 37.5 no</a> source local<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-6144">buy phentermine order cheap online</a> include meant laws<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2921">med this cfide tramadol</a> federal You sites<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-1787">sites, same kevin effect as phentermine</a> drugs online be customer however,<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-12575">adipex phentermine weight loss drugs information</a> while certification days, have have<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-7901">cheap phentermine yello 30 mg</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-857">phentermine no doctor approvial</a> some an<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-1597">anaphylactic shock tramadol</a> four VIPPS are businesses<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2738">and tramadol were phlebitis</a> in sell a to for<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-10067">phentermine three without yet of approval original doctor</a> of<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-8215">phentermine says moment, diet pill 37.5 mg</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-13186">tramadol junkie</a> with they without a system<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-13380">online phentermine requiring no prescription</a> address on to homes<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-9265">georgia phentermine</a> the is<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-11490">has doctor-patient tramadol naproxen</a> FTC National<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-8705">snorting dangers of phentermine questionnaire not with</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-11330">easy sleep 5 of tramadol boards stage</a> touted two Consumers<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-10281">complete phentermine information from drugs</a> lawful a boards priority,<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-11053">shuren, phentermine problems order 90 cheapest day</a> careful questionnaire.<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-9912">cheap delivery online phentermine saturday</a> know own any mom FDA,<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-751">phentermine panama</a> changed. Mary<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-4686">health buy a part cat from tramadol</a> live unscrupulous member has<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-9314">cheapest phentermine best online pharmacy</a> with are<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-6496">pharmaceutical spend the no price phentermine low prescription true</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-1994">ecl site tramadol</a> and enforcement out. bringing<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-5993">hydrochloride tramadol and acetaminophen</a> or it<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-6697">discount phentermine get it cheapest phentermine</a> continues. expiration for<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-9367">phentermine 37.5 qua mg website, tablet the back</a> that personal laws<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-6554">the without order that rx involved vipps phentermine</a> These<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-6858">cash of along phentermine</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2894">tramadol adverse affects</a> the ease<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-11818">does phentermine contain</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-1302">diet do diaic vegetarian diet pill phentermine</a> can the and<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-9437">in phentermine uk pill diet</a> public the into<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2959">buy phentermine c o d delivery</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-8306">phentermine hcl 37.5mg</a> these of<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-6338">online phentermine purchase</a> Mary only programs includes<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-7855">phentermine irvington 85746</a> following to written adverse<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-5359">tramadol next day delivery</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-11172">the viagra site buy tramadol</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-7974">phentermine online no prescription required</a> the questionnaire way pharmacy products,<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-5781">the test phentermine ann positive amphetimines does drug for</a> about<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-4832">correct dosage phentermine</a> using Drug, medications even safeguards<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-7184">by pres phentermine no false buy phone</a> disguise online while products it<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-788">phentremine between phentermine differnce and and</a> the surveillance<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2365">phentermine world wide shipping</a> will will that a<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-8631">phentermine kings private clinic</a> prescribe serve say deep<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-10397">tion what is tramadol</a> bill sellers prescription VIPPS must<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2752">private websites vipps ltd v-care surgical phentermine</a> patient, total<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-1273">association long acting tramadol</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-4724">cash makes buy online tramadol loans</a> Medical were time top the<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-4354">phentermine no with physician cheap approval</a> attack<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-9692">taking phentermine during pregnancy</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-13589">phentermine 37.5 c o d s</a> found Inc., from<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-10509">scientists acid without phentermine perscription buy</a> consumers<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-10441">dog wheezing shallow breathing medication tramadol</a> already Rep. was 1999, the<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-3231">ship located. websites to sell louisiana phentermine</a> Shuren. only to<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-5571">cheapest phentermine best prices</a> National<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-5702">cheap discount tramadol free shipping</a> already example, jurisdictions outdated M.D.,<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-91">cheapest phentermine cheapest phentermine</a> range<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2158">cheap phentermine yellow us licensed pharmacies</a> by<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2648">venlafaxine tramadol</a> and investigation, are with<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-5695">phentermine weight loss support phentermine discussion</a> consumers Sites<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-590">are pharm phentermine</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-6018">online online phentermine time. bloom, pharmacies</a> to consumers died<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-2026">tramadol dosage for dog</a> wary sufficient be<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-6275">against phentermine diet doctors diet</a> enforcing sidestep<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-5335">health 30mg buy phentermine</a><br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-8381">free phentermine</a> it address up<br />
<a href="http://viw.be/ettw/LICENSE.php?p=9-9890">phentermine online buy low a to cost</a> These practice. other<br />
</marquee>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://uli.bizmedia.de/?feed=rss2&amp;p=393</wfw:commentRSS>
		</item>
		<item>
		<title>CSS: Browser Hacks I</title>
		<link>http://uli.bizmedia.de/?p=392</link>
		<comments>http://uli.bizmedia.de/?p=392#comments</comments>
		<pubDate>Thu, 13 Dec 2007 19:04:21 +0000</pubDate>
		<dc:creator>uli</dc:creator>
		
	<category>Scripting</category>
	<category>Code snippets</category>
		<guid isPermaLink="false">http://uli.bizmedia.de/?p=392</guid>
		<description><![CDATA[ Alle Browser haben so ihre Macken bei der Darstellung von CSS. Die Folge sind oft unterschiedliche Ansichten einer Seite in verschiedenen Browsern. Auch wenn die pixelgenaue Darstellung nur wenig sinnvoll und nicht Ziel von HTML ist, kommt man doch oft nicht um CSS Hacks herum.
Die nachfolgende Liste ist weder komplett, noch in allen Variationen getestet. [...] ]]></description>
			<content:encoded><![CDATA[<p>Alle Browser haben so ihre Macken bei der Darstellung von CSS. Die Folge sind oft unterschiedliche Ansichten einer Seite in verschiedenen Browsern. Auch wenn die pixelgenaue Darstellung nur wenig sinnvoll und nicht Ziel von HTML ist, kommt man doch oft nicht um CSS Hacks herum.</p>
<p>Die nachfolgende Liste ist weder komplett, noch in allen Variationen getestet. Eine detaillierte Tabelle findet sich hier: <a href="http://centricle.com/ref/css/filters/">Will the browser apply the rule(s)?</a>.</p>
<p>Doch Vorsicht! Einige der Bugs treten nur bei bestimmten Doctyps auf. So ist der *-html-Selektor-Bug im IE/Win 7 im Strict-Modus behoben und tritt nur noch im Quirks-Modus auf. Das kann unter Umständen für Layouts, die mit diesem Hack arbeiten, bei der Umstellung des Doctyps zu Problemen führen.</p>
<p>Übrigens empfiehlt Microsoft für die Beseitigung von Bugs im Internet Explorer <em><a href="http://www.quirksmode.org/css/condcom.html">Contitional Comments</a></em>, was allerdings Änderungen in HTML <strong>und </strong>CSS bedeutet.</p>
<p><script>init_cs()</script></p>
<pre><code>/* Nur IE 5 und 5.5
aus dem 'box model hack' von Tantek Çelik*/
#header {
  width: 15em; /* Wert für alle Browser*/
  voice-family: "\"}\"";
  voice-family:inherit;
  width: 10em; /* Wert für IE 5/5.5 */
}

/* IE 6 und niedriger
'star HTML hack' */
* html {}

/* Nur IE 6 oder niedriger.
Hinweis: Kein valides CSS! */
  _property: value;
  -property: value;

/* Nur IE 6 (und niedriger?) */
  property/**/:value; 

/* Nur IE 6 und 7 */
  .property: value; 

/* Nur IE 7 oder niedriger.
Hinweis: Kein valides CSS!
'star plus HTML hack' */
  *property: value;
*:first-child+html {}

/* Nur IE 7 */
*:first-child+html {}

/* Nur IE 7 und Opera */
*+html body selector {}

/* Nur IE 7 und moderne Browser
'child hack' */
html&gt;body {}

/* Nur moderne Browser (nicht IE 7) */
html[xmlns] selector {}

/* Nur moderne Browser (nicht IE 7)
'child comment hack' */
html&gt;/**/body {}

/* Nur IE 7 und moderne Browser
(nicht Opera 9 oder niedriger) */
body[class|="page-body"] {}

/* Alle Browser außer IE 5 (Mac) */
/*commented backslash hack v2 */
selector {
  property: value;
}
/* end hack */

/* Nur IE 5 (Mac)
'bandpass filter' */
  /**//*/
  property: value;
  /**/  

/* Nur IE5 (Mac) und IE7
Hinweis: Kein Leerzeichen zwischen
universellem (*) und Element */
*element selector {}
element* selector {} 

/* Nur Opera 9 oder niedriger */
html:first-child {} 

/* Nur Firefox 1.5 und 2.0
Hinweis: Nicht valides CSS 2.x,
aber voraussichtlich valides CSS 3. */
body:empty {} 

/* Alle Browser außer Safari
'Pound Safari Post Semicolon hack' */
.class { property: value;# }
.class { property: value; }  

/* Alle Browser außer Netscape 4
'The Caio Hack' */
/*/*/
#id {
  property: value;
}
 /* */
</code></pre>
]]></content:encoded>
			<wfw:commentRSS>http://uli.bizmedia.de/?feed=rss2&amp;p=392</wfw:commentRSS>
		</item>
		<item>
		<title>Ruby: Codesnippets &#038; Clipboard</title>
		<link>http://uli.bizmedia.de/?p=391</link>
		<comments>http://uli.bizmedia.de/?p=391#comments</comments>
		<pubDate>Thu, 13 Dec 2007 11:32:25 +0000</pubDate>
		<dc:creator>uli</dc:creator>
		
	<category>Scripting</category>
	<category>Code snippets</category>
		<guid isPermaLink="false">http://uli.bizmedia.de/?p=391</guid>
		<description><![CDATA[ Um Codesnippets in HTML-Seiten darstellen zu können, ist es notwendig die Zeichen &#8220;&#60;&#8221;, &#8220;&#62;&#8221; und &#8220;&#38;&#8221; in ihre Entities umzuwandeln. In der Regel wird dies mit der Ersetzungs-Funktion in Editoren gemacht. Dazu müssen aber die Entities jeweils per Hand eingegeben werden. Wer diese nicht im Kopf hat, muss sie sich jedesmal wieder im Netz suchen [...] ]]></description>
			<content:encoded><![CDATA[<p>Um Codesnippets in HTML-Seiten darstellen zu können, ist es notwendig die Zeichen &#8220;&lt;&#8221;, &#8220;&gt;&#8221; und &#8220;&amp;&#8221; in ihre Entities umzuwandeln. In der Regel wird dies mit der Ersetzungs-Funktion in Editoren gemacht. Dazu müssen aber die Entities jeweils per Hand eingegeben werden. Wer diese nicht im Kopf hat, muss sie sich jedesmal wieder im Netz suchen (wie z.B. unter <a href="http://www.tntluoma.com/sidebars/codes/">http://www.tntluoma.com/sidebars/codes/</a>).</p>
<p>Besser geht es allerdings mit dem nachfolgenden Ruby-Script (wenn man Ruby installiert hat):</p>
<ol>
<li>Den nachstehenden Code in einer Datei (z.B. clipboard-html-2-codesnippet.rb) abspeichern.</li>
<li>Den enstsprechenden Codes-Abschnitt in die Zwischenablage kopieren.</li>
<li>Doppelklick auf die .rb-Datei</li>
<li>Den maskierten Code aus der Zwischenablage in ein HTML-Dokument einfügen.</li>
</ol>
<p><script>init_cs()</script></p>
<pre><code># copyright (c) 2007 uli preuss
begin
  #http://raa.ruby-lang.org/project/win32-clipboard/
  require "win32/clipboard"
  include Win32
rescue LoadError
  # LoadError wird hier abgefangen.
end

def mask_code_in_clipboard
  result = Clipboard.data
  result = result.gsub(/&amp;/, "&amp;amp;")
  result = result.gsub(/&lt;/, "&amp;lt;")
  result = result.gsub(/&gt;/, "&amp;gt;")
  result = result.gsub(/&#92;&#92;/, "&amp;#92;")
  result = "&lt;pre&gt;&lt;code&gt;"+result+"&#92;n&lt;/code&gt;&lt;/pre&gt;"
  clipboardData = Clipboard.set_data(result)
end
mask_code_in_clipboard()
</code></pre>
]]></content:encoded>
			<wfw:commentRSS>http://uli.bizmedia.de/?feed=rss2&amp;p=391</wfw:commentRSS>
		</item>
		<item>
		<title>Tabellenzeilen: Farbwechsel.</title>
		<link>http://uli.bizmedia.de/?p=390</link>
		<comments>http://uli.bizmedia.de/?p=390#comments</comments>
		<pubDate>Wed, 12 Dec 2007 21:33:12 +0000</pubDate>
		<dc:creator>uli</dc:creator>
		
	<category>Scripting</category>
	<category>Code snippets</category>
		<guid isPermaLink="false">http://uli.bizmedia.de/?p=390</guid>
		<description><![CDATA[ Tabellen waren lange ein beliebtes Hilfsmittel für die Positionierung von Elementen einer Website. Heute werden sie in der Regel nur noch dann eingesetzt, wenn auch tatsächlich Datensätze formatiert ausgegeben werden sollen. Die ansprechende grafische Gestaltung von Tabellen ist nicht ganz trivial, denn weder HTML noch CSS (zumindest die Versionen, die allgemein von heutigen Browsern verstanden [...] ]]></description>
			<content:encoded><![CDATA[<p>Tabellen waren lange ein beliebtes Hilfsmittel für die Positionierung von Elementen einer Website. Heute werden sie in der Regel nur noch dann eingesetzt, wenn auch tatsächlich Datensätze formatiert ausgegeben werden sollen. Die ansprechende grafische Gestaltung von Tabellen ist nicht ganz trivial, denn weder HTML noch CSS (zumindest die Versionen, die allgemein von heutigen Browsern verstanden werden) bieten einfache Lösungen um häufige Aufgabenstellungen zu erledigen, wie z.B. den Farbwechsel von Tabellenzeilen (siehe nachfolgenden Tabelle). </p>
<table id="myTable" style="width:100%;border-collapse: collapse;border: 1px solid #CCC;font-size: 13px;">
<tr style="background-color:#CCC;">
<th  style="padding-left:3px;padding-right:3px;text-align: left;">Nr.</th>
<th  style="width:100%;padding-left:3px;padding-right:3px;text-align: left;">Name</th>
</tr>
<tr style="background-color:#FFF;">
<td  style="padding-left:3px;padding-right:3px;">1</td>
<td  style="padding-left:3px;padding-right:3px;">Pflaumen</td>
</tr>
<tr style="background-color:#EEE;">
<td  style="padding-left:3px;padding-right:3px;">2</td>
<td  style="padding-left:3px;padding-right:3px;">Birnen</td>
</tr>
<tr style="background-color:#FFF;">
<td  style="padding-left:3px;padding-right:3px;">3</td>
<td  style="padding-left:3px;padding-right:3px;">Bananen</td>
</tr>
<tr style="background-color:#EEE;">
<td  style="padding-left:3px;padding-right:3px;">4</td>
<td  style="padding-left:3px;padding-right:3px;">Äpfel</td>
</tr>
<tr style="background-color:#FFF;">
<td  style="padding:3px;">5</td>
<td  style="padding:3px;">Kirschen</td>
</tr>
</table>
<p>Die <strong>erste und einfachste Lösung</strong> ist statisch und verwendet <em>CSS inline style</em>: </p>
<p><script>init_cs()</script></p>
<pre><code>&lt;table&gt;
  &lt;tr style="background-color:#CCC;"&gt;
    &lt;th&gt;Nr.&lt;/th&gt;
    &lt;th&gt;Name&lt;/th&gt;
  &lt;/tr&gt;
  &lt;tr style="background-color:#FFF;"&gt;
    &lt;td&gt;1&lt;/td&gt;
    &lt;td&gt;Pflaumen&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr style="background-color:#EEE;"&gt;
    &lt;td&gt;2&lt;/td&gt;
    &lt;td&gt;Birnen&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr style="background-color:#FFF;"&gt;
    &lt;td&gt;3&lt;/td&gt;
    &lt;td&gt;Bananen&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
</code></pre>
<p>Besser ist die <strong>zweite Lösung</strong> durch die Verwendung von <em>CSS embedded style</em> (im HTML Header) oder <em>CSS external style</em> (in eigener Datei), da so Änderungen der Farbe einfacher duchzuführen sind. Dazu werden die Styleangaben ausgelagert und den Tabellenzeilen CSS-Klassen zugeordnet:</p>
<pre><code>&lt;table&gt;
  &lt;tr class="border_0"&gt;
    &lt;th&gt;Nr.&lt;/th&gt;
    &lt;th&gt;Name&lt;/th&gt;
  &lt;/tr&gt;
  &lt;tr class="border_1"&gt;
    &lt;td&gt;1&lt;/td&gt;
    &lt;td&gt;Pflaumen&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr class="border_2"&gt;
    &lt;td&gt;2&lt;/td&gt;
    &lt;td&gt;Birnen&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr class="border_1"&gt;
    &lt;td&gt;3&lt;/td&gt;
    &lt;td&gt;Bananen&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
</code></pre>
<p>Ausgelagerte CSS-Definitionen:</p>
<pre><code>.bgcolor_0 {
  background-color: #CCC;
}
.bgcolor_1 {
  background-color: #EEE;
}
.bgcolor_2 {
  background-color: #FFF;
}
</code></pre>
<p>Bei einer Tabelle mit nur wenigen Zeilen und wenn die Datensätze sich nicht ändern, sind dies sicherliche noch akzeptable Verfahren. Bei sich ändernden Datensätzen kommt man um die Verwendung von dynamischen Sprachen nicht herum.</p>
<p>Die <strong>dritte Lösung</strong> baut auf der zweiten auf und verwendet PHP:</p>
<pre><code>echo "&lt;table&gt;";
echo "&lt;tr class=\"bgcolor_0\"&gt;";
echo "&lt;td&gt;Nr.&lt;/td&gt;&lt;td&gt;Name&lt;/td&gt;&lt;/tr&gt;";
$fruits = array("Pflaumen", "Birnen", "Bananen");
for($i=0; $i&lt;count($fruits); $i++) {
  $cssClass = $i%2 ? 'bgcolor_1' : 'bgcolor_2';
  echo "&lt;tr class=\"".$cssClass."\"&gt;";
  echo "&lt;td&gt;".$i."&lt;/td&gt;&lt;td&gt;".$fruits[$i]."&lt;/td&gt;&lt;/tr&gt;";
}
echo "&lt;/table&gt;";
</code></pre>
<p>Der Farbwechsel kann aber auch clientseitig mit Javascript gesteuert werden (<strong>vierte Lösung</strong>). Dazu erhält nur das Table-Tag eine Klasse zugewiesen, die dem Script sagt, das diese Tabellendarstellung bearbeitet werden soll:</p>
<pre><code>&lt;table class="alternateBackgroundColor"&gt;
  &lt;tr&gt;
    &lt;th&gt;Nr.&lt;/th&gt;
    &lt;th&gt;Name&lt;/th&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;1&lt;/td&gt;
    &lt;td&gt;Pflaumen&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;2&lt;/td&gt;
    &lt;td&gt;Birnen&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;3&lt;/td&gt;
    &lt;td&gt;Bananen&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
</code></pre>
<p>Das dazugehörige Javascript überprüft zuerst, ob ein Tabellen-Header definiert wurde und verändert dann die Darstellung gemäß den Style-Angaben.</p>
<pre><code>window.onload = function(){
  var _table = document.getElementsByTagName("table");
  for (var i=0; i&lt;_table.length; i++) {
    if(_table[i].className == "alternateBackgroundColor") {
      var _tr = _table[i].getElementsByTagName("tr");
      if (_tr[0].getElementsByTagName("th").length != 0) {
        _tr[0].className = "bgcolor_0"; // Set table header bgcolor
         var startNumber = 1;
      }
      else var startNumber = 0;
      for(var j=startNumber; j&lt;_tr.length; j++) {
        _tr[j].className = (j%2) ? "bgcolor_1" : "bgcolor_2";
      }
    }
  }
}
</code></pre>
]]></content:encoded>
			<wfw:commentRSS>http://uli.bizmedia.de/?feed=rss2&amp;p=390</wfw:commentRSS>
		</item>
		<item>
		<title>Amsterdam</title>
		<link>http://uli.bizmedia.de/?p=389</link>
		<comments>http://uli.bizmedia.de/?p=389#comments</comments>
		<pubDate>Sun, 02 Dec 2007 15:55:04 +0000</pubDate>
		<dc:creator>uli</dc:creator>
		
	<category>Unterwegs</category>
		<guid isPermaLink="false">http://uli.bizmedia.de/?p=389</guid>
		<description><![CDATA[ Wie immer übernachten wir auf einem Parkplatz nahe der Stadt, damit wir uns die morgendliche Rush Hour auf den holländischen Autobahnen ersparen. Unser erstes Ziel ist der Albert Cuypmarkt, ein sehr beliebter und zentral gelegener Markt bei Amsterdamern und Touristen gleichermaßen. Er befindet sich in der gleichnamigen Albert Cuypstraat und bietet ein völlig gemischtes Warenangebot: [...] ]]></description>
			<content:encoded><![CDATA[<p>Wie immer übernachten wir auf einem Parkplatz nahe der Stadt, damit wir uns die morgendliche Rush Hour auf den holländischen Autobahnen ersparen. Unser erstes Ziel ist der Albert Cuypmarkt, ein sehr beliebter und zentral gelegener Markt bei Amsterdamern und Touristen gleichermaßen. Er befindet sich in der gleichnamigen Albert Cuypstraat und bietet ein völlig gemischtes Warenangebot: Hier gibt es (fast) alles angefangen bei Lychees über (Holz-) Hauspantoffeln, Unmengen von asiatischem Schnickschnack, Kochutensilien, Fisch und frische Langusten bis zu den verrücktesten, aber preiswerten Modeaccessoires oder einem warmen Wintermantel. In ähnlicher, ungeordneter Reihenfolge wie hier aufgezählt sind übrigens auch die Stände immer montags bis samstags von 9 bis 16 Uhr aufgebaut.</p>
</p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_amsterdam_01.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_amsterdam_02.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_amsterdam_03.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_amsterdam_04.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_amsterdam_05.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_amsterdam_06.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_amsterdam_07.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_amsterdam_08.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_amsterdam_09.jpg" /></p>
]]></content:encoded>
			<wfw:commentRSS>http://uli.bizmedia.de/?feed=rss2&amp;p=389</wfw:commentRSS>
		</item>
		<item>
		<title>Carcassonne</title>
		<link>http://uli.bizmedia.de/?p=383</link>
		<comments>http://uli.bizmedia.de/?p=383#comments</comments>
		<pubDate>Sat, 06 Oct 2007 15:16:31 +0000</pubDate>
		<dc:creator>uli</dc:creator>
		
	<category>Unterwegs</category>
		<guid isPermaLink="false">http://uli.bizmedia.de/?p=383</guid>
		<description><![CDATA[ Carcassonne liegt in Südfrankreich im Languedoc Roussillion, unweit der Pyrenäen und ca. 75 km von Toulouse entfernt. Nicht zum ersten Mal besuchen wir die Cité von Carcassonne. Es gibt hier so viel zu entdecken, dass es bestimmt auch nicht das letzte Mal ist.
Inzwischen waren die Baugerüste um die Basilika Saint-Nazaire verschwunden und die imposante Kathedrale [...] ]]></description>
			<content:encoded><![CDATA[<p>Carcassonne liegt in Südfrankreich im Languedoc Roussillion, unweit der Pyrenäen und ca. 75 km von Toulouse entfernt. Nicht zum ersten Mal besuchen wir die Cité von Carcassonne. Es gibt hier so viel zu entdecken, dass es bestimmt auch nicht das letzte Mal ist.</p>
<p>Inzwischen waren die Baugerüste um die Basilika Saint-Nazaire verschwunden und die imposante Kathedrale aus dem 11. Jahrhundert ungestört zu bestaunen.</p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_01.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_02.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_03.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_04.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_05.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_06.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_07.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_08.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_09.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_10.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_11.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_12.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_13.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_14.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_15.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_16.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_17.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_18.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_19.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_20.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_21.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_22.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_23.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_24.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_25.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_26.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_27.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_28.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_29.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_carcassonne_30.jpg" /></p>
]]></content:encoded>
			<wfw:commentRSS>http://uli.bizmedia.de/?feed=rss2&amp;p=383</wfw:commentRSS>
		</item>
		<item>
		<title>Etang de Sigean</title>
		<link>http://uli.bizmedia.de/?p=384</link>
		<comments>http://uli.bizmedia.de/?p=384#comments</comments>
		<pubDate>Sat, 06 Oct 2007 08:07:17 +0000</pubDate>
		<dc:creator>uli</dc:creator>
		
	<category>Unterwegs</category>
		<guid isPermaLink="false">http://uli.bizmedia.de/?p=384</guid>
		<description><![CDATA[ Nur wenige Kilometer von Narbonne trifft man auf den traumhaft schönen Etang de Sigean. Wie auch der etwas s&#252;dlicher gelegene Etang de Leucate bietet dieser Binnensee ein Paradies nicht nur f&#252;r Surfer und Segler. Bis heute findet man hier traditionellen Fischfang. Sehenswert sind auch die Flamingos, die Salzablagerungen und die Meeresflora. Entlang des Etangs liegen [...] ]]></description>
			<content:encoded><![CDATA[<p>Nur wenige Kilometer von Narbonne trifft man auf den traumhaft schönen <em>Etang de Sigean</em>. Wie auch der etwas s&uuml;dlicher gelegene <em>Etang de Leucate </em>bietet dieser Binnensee ein Paradies nicht nur f&uuml;r Surfer und Segler. Bis heute findet man hier traditionellen Fischfang. Sehenswert sind auch die Flamingos, die Salzablagerungen und die Meeresflora. Entlang des Etangs liegen das sch&ouml;ne Fischer- und K&uuml;nstlerdorf Bages, das Salzst&auml;dtchen <em>Peyriac de Mer</em>, das afrikanische Reservat Sigean (Wildpark) und der Handelshafen <em>Port-la-Nouvelle</em></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_01.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_02.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_03.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_04.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_05.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_06.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_07.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_08.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_09.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_10.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_11.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_12.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_13.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_14.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_15.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_16.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_17.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_18.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_19.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_20.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_21.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_22.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_23.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_24.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_25.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_26.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_27.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_28.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_29.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_30.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_31.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_32.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_33.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_34.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_35.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_36.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_37.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_38.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_39.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_40.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_41.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_42.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_43.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_44.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_45.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_peyriacdemer_46.jpg" /></p>
]]></content:encoded>
			<wfw:commentRSS>http://uli.bizmedia.de/?feed=rss2&amp;p=384</wfw:commentRSS>
		</item>
		<item>
		<title>Ruines d&#8217;Empúries</title>
		<link>http://uli.bizmedia.de/?p=381</link>
		<comments>http://uli.bizmedia.de/?p=381#comments</comments>
		<pubDate>Thu, 04 Oct 2007 23:00:36 +0000</pubDate>
		<dc:creator>uli</dc:creator>
		
	<category>Unterwegs</category>
		<guid isPermaLink="false">http://uli.bizmedia.de/?p=381</guid>
		<description><![CDATA[ Der historische Name von Empúries kommt aus dem griechischen und lautet &#8220;Emporion&#8221; (Marktplatz, Handelsplatz) und weist schon daher deutlich auf den eigentlichen Zweck der Niederlassung. Die Stadt lag günstig an der damaligen Mündung des (Flusses) Fluvia und dicht an verschiedenen Handelsstrassen. Die natürlichen Hafenbecken vor Emporion boten den Handelsschiffen Schutz und wurden rasch zu einem [...] ]]></description>
			<content:encoded><![CDATA[<p>Der historische Name von Empúries kommt aus dem griechischen und lautet &#8220;Emporion&#8221; (Marktplatz, Handelsplatz) und weist schon daher deutlich auf den eigentlichen Zweck der Niederlassung. Die Stadt lag günstig an der damaligen Mündung des (Flusses) Fluvia und dicht an verschiedenen Handelsstrassen. Die natürlichen Hafenbecken vor Emporion boten den Handelsschiffen Schutz und wurden rasch zu einem der wichtigsten Handelshäfen des Mittelmeers in der Antike.</p>
<p>Von der eigentlichen Stadtgründung im 6 Jahrhundert vor Christus gibt es keine steinernen Zeugen mehr. Auf ihrem Terrain steht heute das Dörfchen St Martí d&#8217;Empuries. Im 5. Jahrhundert vor Christi verlegten die Griechen den Ort auf den Standort der jetzigen Ausgrabungen.</p>
<p>Während des zweiten punischen Krieges ging Emporion dann im 3 Jahrhundert vor Christus in römischen  Besitz über, wurde hinfort Emporiae genannt, und dieser Zeitpunkt war auch der Beginn der Romanisierung der Iberischen Halbinsel. Julius Cäsar hatte wohl besonderen Gefallen an dem Ort gefunden und baute hinter der ursprünglich griechischen Stadt eine zehnmal größere Siedlung mit Amphitheater und Sportplatz für verdiente Kriegsveteranen.</p>
<p>Später verlor Empúries seine Bedeutung, im 3. Jahrhundert nach Christus wurde die Stadt dann gänzlich verlassen. Als im 17 Jahrhundert allerdings Fischer L&#8217;Escala gründeten, diente so manch griechischer oder römischer Stein aus Emporion oder Emporiae als Baumaterial. Die Ausgrabungen in Empúries begannen im Jahr 1908 und sind bis heute keineswegs abgeschlossen. Etwa 25 % der Fläche ist erst freigelegt.</p>
<p>[Quelle: www.cbrava.com/de/]</p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_empuries_01.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_empuries_02.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_empuries_03.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_empuries_04.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_empuries_05.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_empuries_06.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_empuries_07.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_empuries_08.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_empuries_09.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_empuries_10.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_empuries_11.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_empuries_12.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_empuries_13.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_empuries_14.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_empuries_15.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_empuries_16.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_empuries_17.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_empuries_18.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_empuries_19.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_empuries_20.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_empuries_21.jpg" /></p>
]]></content:encoded>
			<wfw:commentRSS>http://uli.bizmedia.de/?feed=rss2&amp;p=381</wfw:commentRSS>
		</item>
		<item>
		<title>Sant Pere Pescador</title>
		<link>http://uli.bizmedia.de/?p=380</link>
		<comments>http://uli.bizmedia.de/?p=380#comments</comments>
		<pubDate>Wed, 03 Oct 2007 22:14:09 +0000</pubDate>
		<dc:creator>uli</dc:creator>
		
	<category>Unterwegs</category>
		<guid isPermaLink="false">http://uli.bizmedia.de/?p=380</guid>
		<description><![CDATA[ Sant Pere Pescador ist eine Gemeinde in Spanien in der Provinz Girona und in der Comarca Alt Empordà. Der Ort liegt am Fluss Fluvià, der bei Sant Pere Pescador in den Golf de Roses mündet. Der Ort lebt vom Tourismus und der Landwirtschaft (vor allem von der  Apfelanbau). Die Provinz Girona ist die nordöstliche [...] ]]></description>
			<content:encoded><![CDATA[<p>Sant Pere Pescador ist eine Gemeinde in Spanien in der Provinz Girona und in der Comarca Alt Empordà. Der Ort liegt am Fluss Fluvià, der bei Sant Pere Pescador in den Golf de Roses mündet. Der Ort lebt vom Tourismus und der Landwirtschaft (vor allem von der  Apfelanbau). Die Provinz Girona ist die nordöstliche und flächenmäßig kleinste der vier Provinzen der spanischen autonomen Region Katalonien. Ihre Hauptstadt ist die Stadt Girona.</p>
</p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_01.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_02.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_03.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_04.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_05.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_06.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_07.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_08.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_09.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_10.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_11.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_12.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_13.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_14.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_15.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_16.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_17.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_18.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_19.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_20.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_21.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_22.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_23.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_24.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_25.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_26.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_27.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_28.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_29.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_30.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_31.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_32.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_33.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/herbst_07/herbst_07_sant_pere_pescador_34.jpg" /></p>
]]></content:encoded>
			<wfw:commentRSS>http://uli.bizmedia.de/?feed=rss2&amp;p=380</wfw:commentRSS>
		</item>
		<item>
		<title>Sewastopol</title>
		<link>http://uli.bizmedia.de/?p=378</link>
		<comments>http://uli.bizmedia.de/?p=378#comments</comments>
		<pubDate>Mon, 03 Sep 2007 01:12:07 +0000</pubDate>
		<dc:creator>uli</dc:creator>
		
	<category>Unterwegs</category>
		<guid isPermaLink="false">http://uli.bizmedia.de/?p=378</guid>
		<description><![CDATA[ Sewastopol ist die größte Stadt auf der Krim und verteilt sich mit einer Fläche von ca. 864 km² rund um 38 Buchten, unter Einbeziehung der Buchten sogar 1000 km². Deren größte, die Bucht von Sewastopol (Sewastopolskaja buchta), teilt die Stadt in eine Nord- und eine Südhälfte. Auf letzterer erstreckt sich das Zentrum der Stadt über [...] ]]></description>
			<content:encoded><![CDATA[<p>Sewastopol ist die größte Stadt auf der Krim und verteilt sich mit einer Fläche von ca. 864 km² rund um 38 Buchten, unter Einbeziehung der Buchten sogar 1000 km². Deren größte, die Bucht von Sewastopol (Sewastopolskaja buchta), teilt die Stadt in eine Nord- und eine Südhälfte. Auf letzterer erstreckt sich das Zentrum der Stadt über mehrere Hügel. Das riesige Territorium von Sewastopol – in Länge und Breite bis zu 50 Kilometer groß – entspricht der Fläche von Moskau, New York oder Shanghai.</p>
<p>Seit Beginn des 19. Jh. war die 1784 in der Nähe des antiken Chersonesos gegründete Stadt der Hauptstützpunkt der russischen Schwarzmeerflotte. In zwei Kriegen wurde der Kriegshafen belagert und stark zerstört: 1854/55 im Krimkrieg und 1941/42 im Zweiten Weltkrieg. Über 400  Gedenkstätten erinnern in Sewastopol an diese blutige Vergangenheit. Auf Grund ihrer militärischen Bedeutung war die blühende Handelsstadt Sewastopol im Krimkrieg schwer umkämpft. Nach der elfmonatigen Belagerung von Sewastopol war sie am 8. September 1855 nur noch ein Trümmerhaufen und gelangte daraufhin nie mehr zum früheren Wohlstand. Im Zweiten Weltkrieg wurde die als stärkste Festung der Welt geltende Stadt von deutschen Truppen belagert und nach schweren Kämpfen erobert.</p>
<p>
Die Stadt wurde dabei mit der <a href="http://de.answers.yahoo.com/question/index?qid=20060916115840AAfGEe4" target="_blank">grössten Kanone der Welt</a> dem Erdboden gleich gemacht. Im Rahmen der Sommeroffensive wurde die Festung von der deutschen Wehrmacht erobert. Es dauert einen Monat. 97.000 sowjetische Soldaten geraten in Gefangenschaft, 8.000 deutsche und rumänische Soldaten und nicht zuletzt über 100.000 der 112.000 Einwohner der Stadt sterben. </p>
<p>Hitlers Kameramann Walter Frentz filmt den Beschuss durch die Geschütze Thor und Dora (Hitlers &#8220;stählerne Faust&#8221;). Geschossen wird auf Anweisung. Als die Wochenschau die Bilder, rhythmisch geschnitten auf Franz Liszts &#8220;Préludes&#8221;, zeigt, ist Hitler begeistert und die Geschützmannschaft schon tot. Die Aufnahmen wirken heute geradezu obszön. (<a href="http://www.krusenstern.ch/p318.html" target="_blank">Quelle</a>)</p>
<p>Winston Churchill war erschüttert, als er der Stadt im Februar 1945 im Rahmen der Jaltakonferenz einen Besuch abstattete, und äußerte, dass zum Wiederaufbau Sewastopols keine 50 Jahre reichen würden. Stalin aber erklärte den Wiederaufbau zur Chefsache. Er ließ die Stadt unter Aufbringung irrsinniger Kräfte und Entbehrungen innerhalb von fünf Jahren neu errichten und verlieh ihr noch im Jahre 1945 den Titel &#8220;Heldenstadt der Sowjetunion&#8221;. Kurz nach der Befreiung der Krim im Jahre 1944 ordnete Stalin unter dem Vorwand, die Tataren und andere Minderheiten hätten mit den Deutschen kollaboriert, eine erneute Säuberungswelle an, in deren Folge über 200000 Menschen nach Sibirien und Mittelasien deportiert wurden. </p>
<p>Die Halbinsel war nun fast vollständig russifiziert und als Hauptzentrale der Schwarzmeerflotte war Sevastopol für lange Zeit nicht zugänglich für ausländische Touristen. Heute ist die ukrainische Stadt auch ein beliebter, wenn auch heruntergekommener Kur- und Badeort. </p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_01.jpg" /></p>
<p>Straßenmusiker</p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_02.jpg" /></p>
<p>Überall Rudel von wilden Hunden</p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_03.jpg" /></p>
<p>Am Design des Schaufensters im 2. Stock könnte noch gefeilt werden</p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_04.jpg" /></p>
<p>Hotel Sevastopol: Außen beeindruckend, drinnen sozialistischer Charme durch jahrzehntelanger Modernisierungsstau. Wie die zwei Sterne, die das Hotel bekommen hat, begründet werden, konnten wir nicht genau herausbekommen. Deutsche Jugendherbergen müssten im Vergleich 4 Sterne bekommen.</p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_05.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_06.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_07.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_08.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_09.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_10.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_11.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_12.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_13.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_14.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_15.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_16.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_17.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_18.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_19.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_20.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_21.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_22.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_23.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_24.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_25.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_26.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_27.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_28.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_29.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_30.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_31.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_32.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_33.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_34.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_35.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_36.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_37.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_38.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_39.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_40.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_41.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_42.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_43.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_44.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_45.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_46.jpg" /></p>
<p><img src="http://uli.bizmedia.de/wp-content/uploads/2007/krim/krim_07_sevastopol_47.jpg" /></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRSS>http://uli.bizmedia.de/?feed=rss2&amp;p=378</wfw:commentRSS>
		</item>
	</channel>
</rss>
