Help
RSS
API
Feed
Maltego
Contact
Domain > asconav6.witenius.de
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2014-03-08
89.31.143.8
(
ClassC
)
2024-11-09
217.160.0.247
(
ClassC
)
Port 80
HTTP/1.1 200 OKContent-Type: text/htmlContent-Length: 26054Connection: keep-aliveKeep-Alive: timeout15Date: Sat, 09 Nov 2024 23:24:16 GMTServer: ApacheLast-Modified: Mon, 14 Jan 2019 07:55:08 GMTETag: 65c6-57f665d0bec63Accept-Ranges: bytes br>script languageJavaScript>var message;function clickIE() {if (document.all) {(message);return false;}}function clickNS(e) {if (document.layers||(document.getElementById&&!document.all)) {if (e.which2||e.which3) {(message);return false;}}}if (document.layers) {document.captureEvents(Event.MOUSEDOWN);document.onmousedownclickNS;}else{document.onmouseupclickNS;document.oncontextmenuclickIE;}/script>/br>div iddot0 styleposition: absolute; visibility: hidden; height: 11; width: 11;>img srcbullet.gif height11 width11>/div>div iddot1 styleposition: absolute; height: 11; width: 11;>img srchttp://members.tripod.de/mauscodetester/bullet.gif height11 width11>/div>div iddot2 styleposition: absolute; height: 11; width: 11;>img srchttp://members.tripod.de/mauscodetester/bullet.gif height11 width11>/div>div iddot3 styleposition: absolute; height: 11; width: 11;>img srchttp://members.tripod.de/mauscodetester/bullet.gif height11 width11>/div>div iddot4 styleposition: absolute; height: 11; width: 11;>img srchttp://members.tripod.de/mauscodetester/bullet.gif height11 width11>/div>div iddot5 styleposition: absolute; height: 11; width: 11;>img srchttp://members.tripod.de/mauscodetester/bullet.gif height11 width11>/div>div iddot6 styleposition: absolute; height: 11; width: 11;>img srchttp://members.tripod.de/mauscodetester/bullet.gif height11 width11>/div>script LANGUAGEJavaScript>!-- hide code/*Elastic Trail script (By Philip Winston @ pwinston@yahoo.com, URL:http://members.xoom.com/ebullets)Script featured on Dynamicdrive.comFor this and 100s more DHTML scripts, visit http://dynamicdrive.com*/// Thanks to Troels Jakobsen tjak@get2net.dk>// for fix which makes it work when the page is scrolledvar nDots 7;if (document.all&&window.print)document.body.style.cssTextoverflow-x:hidden;overflow-y:scrollvar Xpos 0;var Ypos 0; // fixed time step, no relation to real timevar DELTAT .01; // size of one spring in pixelsvar SEGLEN 10; // spring constant, stiffness of springsvar SPRINGK 10; // all the physics is bogus, just picked stuff to // make it look okayvar MASS 1;var GRAVITY 50;var RESISTANCE 10; // stopping criterea to prevent endless jittering // doesnt work when sitting on bottom since floor // doesnt push back so acceleration always as big // as gravityvar STOPVEL 0.1;var STOPACC 0.1;var DOTSIZE 11; // BOUNCE is percent of velocity retained when // bouncing off a wallvar BOUNCE 0.75;var isNetscape navigator.appNameNetscape; // always on for now, could be played with to // let dots fall to botton, get thrown, etc.var followmouse true;var dots new Array();init();function init(){ var i 0; for (i 0; i nDots; i++) { dotsi new dot(i); } if (!isNetscape) { // I only know how to read the locations of the // LI> items in IE //skip this for now // setInitPositions(dots) } // set their positions for (i 0; i nDots; i++) { dotsi.obj.left dotsi.X; dotsi.obj.top dotsi.Y; } if (isNetscape) { // start right away since they are positioned // at 0, 0 startanimate(); } else { // let dots sit there for a few seconds // since theyre hiding on the real bullets setTimeout(startanimate(), 2000); }}function dot(i) { this.X Xpos; this.Y Ypos; this.dx 0; this.dy 0; if (isNetscape) { this.obj eval(document.dot + i); } else { this.obj eval(dot + i + .style); }}function startanimate() { setInterval(animate(), 20);}// This is to line up the bullets with actual LI tags on the page// Had to add -DOTSIZE to X and 2*DOTSIZE to Y for IE 5, not sure why// Still doesnt work greatfunction setInitPositions(dots){ // initialize dot positions to be on top // of the bullets in the ul> var startloc document.all.tags(LI); var i 0; for (i 0; i startloc.length && i (nDots - 1); i++) { dotsi+1.X startloci.offsetLeft startloci.offsetParent.offsetLeft - DOTSIZE; dotsi+1.Y startloci.offsetTop + startloci.offsetParent.offsetTop + 2*DOTSIZE; } // put 0th dot above 1st (it is hidden) dots0.X dots1.X; dots0.Y dots1.Y - SEGLEN;}// just save mouse position for animate() to usefunction MoveHandler(e){ Xpos e.pageX; Ypos e.pageY; return true;}// just save mouse position for animate() to usefunction MoveHandlerIE() { Xpos window.event.x + document.body.scrollLeft; Ypos window.event.y + document.body.scrollTop; }if (isNetscape) { document.captureEvents(Event.MOUSEMOVE); document.onMouseMove MoveHandler;} else { document.onmousemove MoveHandlerIE;}function vec(X, Y){ this.X X; this.Y Y;}// adds force in X and Y to spring for doti on dotjfunction springForce(i, j, spring){ var dx (dotsi.X - dotsj.X); var dy (dotsi.Y - dotsj.Y); var len Math.sqrt(dx*dx + dy*dy); if (len > SEGLEN) { var springF SPRINGK * (len - SEGLEN); spring.X + (dx / len) * springF; spring.Y + (dy / len) * springF; }}function animate() { // dots0 follows the mouse, // though no dot is drawn there var start 0; if (followmouse) { dots0.X Xpos; dots0.Y Ypos; start 1; } for (i start ; i nDots; i++ ) { var spring new vec(0, 0); if (i > 0) { springForce(i-1, i, spring); } if (i (nDots - 1)) { springForce(i+1, i, spring); } // air resisitance/friction var resist new vec(-dotsi.dx * RESISTANCE, -dotsi.dy * RESISTANCE); // compute new accel, including gravity var accel new vec((spring.X + resist.X)/ MASS, (spring.Y + resist.Y)/ MASS + GRAVITY); // compute new velocity dotsi.dx + (DELTAT * accel.X); dotsi.dy + (DELTAT * accel.Y); // stop dead so it doesnt jitter when nearly still if (Math.abs(dotsi.dx) STOPVEL && Math.abs(dotsi.dy) STOPVEL && Math.abs(accel.X) STOPACC && Math.abs(accel.Y) STOPACC) { dotsi.dx 0; dotsi.dy 0; } // move to new position dotsi.X + dotsi.dx; dotsi.Y + dotsi.dy; // get size of window var height, width; if (isNetscape) { height window.innerHeight + document.scrollTop; width window.innerWidth + document.scrollLeft; } else { height document.body.clientHeight + document.body.scrollTop; width document.body.clientWidth + document.body.scrollLeft; } // bounce of 3 walls (leave ceiling open) if (dotsi.Y > height - DOTSIZE - 1) { if (dotsi.dy > 0) { dotsi.dy BOUNCE * -dotsi.dy; } dotsi.Y height - DOTSIZE - 1; } if (dotsi.X > width - DOTSIZE) { if (dotsi.dx > 0) { dotsi.dx BOUNCE * -dotsi.dx; } dotsi.X width - DOTSIZE - 1; } if (dotsi.X 0) { if (dotsi.dx 0) { dotsi.dx BOUNCE * -dotsi.dx; } dotsi.X 0; } // move img to new position dotsi.obj.left dotsi.X; dotsi.obj.top dotsi.Y; }}// end code hiding -->/script>!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN>HTML>HEAD>TITLE>asconaV6/TITLE>META HTTP-EQUIVContent-Type CONTENTtext/html; charsetISO-8859-1>META NAMEGenerator CONTENTNetObjects Fusion 7 für Windows>META NAMEAuthor CONTENTHelmut Witenius>SCRIPT TYPEtext/javascript>!--function F_loadRollover(){} function F_roll(){}//-->/SCRIPT>SCRIPT TYPEtext/javascript SRC./rollover.js>/SCRIPT>/HEAD>BODY BGCOLOR#0000CC BACKGROUND./Back30.gif TEXT#000000 LINK#CDC51D VLINK#808080> TABLE BORDER0 CELLSPACING0 CELLPADDING0 WIDTH997> TR VALIGNTOP ALIGNLEFT> TD HEIGHT37 WIDTH12>IMG SRC./clearpixel.gif WIDTH12 HEIGHT1 BORDER0 ALT>/TD> TD>/TD> TD WIDTH37>IMG SRC./clearpixel.gif WIDTH37 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH20>IMG SRC./clearpixel.gif WIDTH20 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH8>IMG SRC./clearpixel.gif WIDTH8 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH31>IMG SRC./clearpixel.gif WIDTH31 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH7>IMG SRC./clearpixel.gif WIDTH7 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH34>IMG SRC./clearpixel.gif WIDTH34 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH7>IMG SRC./clearpixel.gif WIDTH7 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH5>IMG SRC./clearpixel.gif WIDTH5 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH25>IMG SRC./clearpixel.gif WIDTH25 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH54>IMG SRC./clearpixel.gif WIDTH54 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH123>IMG SRC./clearpixel.gif WIDTH123 HEIGHT1 BORDER0 ALT>/TD> TD>/TD> TD WIDTH35>IMG SRC./clearpixel.gif WIDTH35 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH8>IMG SRC./clearpixel.gif WIDTH8 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH39>IMG SRC./clearpixel.gif WIDTH39 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH10>IMG SRC./clearpixel.gif WIDTH10 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH9>IMG SRC./clearpixel.gif WIDTH9 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH19>IMG SRC./clearpixel.gif WIDTH19 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH3>IMG SRC./clearpixel.gif WIDTH3 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH23>IMG SRC./clearpixel.gif WIDTH23 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH15>IMG SRC./clearpixel.gif WIDTH15 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH100>IMG SRC./clearpixel.gif WIDTH100 HEIGHT1 BORDER0 ALT>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN16 HEIGHT1>/TD> TD COLSPAN5 ROWSPAN4 WIDTH80>IMG IDBild33 HEIGHT70 WIDTH80 SRC./opel_zeichen_neu.gif BORDER0 ALT>/TD> TD COLSPAN3>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN4 HEIGHT4>/TD> TD COLSPAN4 ROWSPAN4 WIDTH80>IMG IDBild32 HEIGHT70 WIDTH80 SRC./opel_zeichen_neu.gif BORDER0 ALT>/TD> TD COLSPAN8>/TD> TD COLSPAN3>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN4 HEIGHT60>/TD> TD>/TD> TD COLSPAN6 WIDTH468>IMG IDBild29 HEIGHT60 WIDTH468 SRC./bannerasconav6-3.jpg BORDER0 ALT>/TD> TD>/TD> TD COLSPAN3>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN4 HEIGHT5>/TD> TD COLSPAN8>/TD> TD COLSPAN3>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN4 HEIGHT1>/TD> TD COLSPAN16>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN24 HEIGHT36>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN11>/TD> TD COLSPAN6 WIDTH485 IDText3> P>FONT COLOR#FFFFFF> /FONT>/P> P> /P> P>FONT COLOR#FFFFFF>Wer Ascona Teile (egal welche) abzugeben hat, bitte bei mir melden!/FONT>/P> P>FONT COLOR#FFFFFF>Suche speziell Klimabedienteil vom Ascona, magnetische Kofferraumentriegelung und 2 Türerteile! Aber bitte jede vorhandene Originalschraube anbieten/FONT>/P> P> /P> /TD> TD COLSPAN7>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN24 HEIGHT22>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD HEIGHT76>/TD> TD ROWSPAN6 WIDTH147> TABLE IDNavigationBar1 BORDER0 CELLSPACING0 CELLPADDING0 WIDTH147> TR VALIGNTOP ALIGNLEFT> TD WIDTH147 HEIGHT40>A HREF./Uber_mich/uber_mich.html classnof-navButtonAnchor onmouseoverF_loadRollover(Navigationsschaltflaeche1,,0);F_roll(Navigationsschaltflaeche1,1) onmouseoutF_roll(Navigationsschaltflaeche1,0)>IMG IDNavigationsschaltflaeche1 NAMENavigationsschaltflaeche1 HEIGHT40 WIDTH147 SRC./-ber-mich_Nbuta1.jpg onmouseoverF_loadRollover(this,-ber-mich_NRbuta2.jpg,0) BORDER0 ALTÜber mich TITLEÜber mich>/A>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD WIDTH147 HEIGHT40>A HREF./Ascona/ascona.html classnof-navButtonAnchor onmouseoverF_loadRollover(Navigationsschaltflaeche2,,0);F_roll(Navigationsschaltflaeche2,1) onmouseoutF_roll(Navigationsschaltflaeche2,0)>IMG IDNavigationsschaltflaeche2 NAMENavigationsschaltflaeche2 HEIGHT40 WIDTH147 SRC./Ascona_Nbuta1.jpg onmouseoverF_loadRollover(this,Ascona_NRbuta2.jpg,0) BORDER0 ALTAscona TITLEAscona>/A>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD WIDTH147 HEIGHT40>A HREF./Vectra/vectra.html classnof-navButtonAnchor onmouseoverF_loadRollover(Navigationsschaltflaeche3,,0);F_roll(Navigationsschaltflaeche3,1) onmouseoutF_roll(Navigationsschaltflaeche3,0)>IMG IDNavigationsschaltflaeche3 NAMENavigationsschaltflaeche3 HEIGHT40 WIDTH147 SRC./Vectra_Nbuta1.jpg onmouseoverF_loadRollover(this,Vectra_NRbuta2.jpg,0) BORDER0 ALTVectra TITLEVectra>/A>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD WIDTH147 HEIGHT40>A HREF./CBR_900RR/cbr_900rr.html classnof-navButtonAnchor onmouseoverF_loadRollover(Navigationsschaltflaeche4,,0);F_roll(Navigationsschaltflaeche4,1) onmouseoutF_roll(Navigationsschaltflaeche4,0)>IMG IDNavigationsschaltflaeche4 NAMENavigationsschaltflaeche4 HEIGHT40 WIDTH147 SRC./CBR-900RR_Nbuta1.jpg onmouseoverF_loadRollover(this,CBR-900RR_NRbuta2.jpg,0) BORDER0 ALTCBR 900RR TITLECBR 900RR>/A>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD WIDTH147 HEIGHT40>A HREF./Geocachen/geocachen.html classnof-navButtonAnchor onmouseoverF_loadRollover(Navigationsschaltflaeche5,,0);F_roll(Navigationsschaltflaeche5,1) onmouseoutF_roll(Navigationsschaltflaeche5,0)>IMG IDNavigationsschaltflaeche5 NAMENavigationsschaltflaeche5 HEIGHT40 WIDTH147 SRC./Geocachen_Nbuta1.jpg onmouseoverF_loadRollover(this,Geocachen_NRbuta2.jpg,0) BORDER0 ALTGeocachen TITLEGeocachen>/A>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD WIDTH147 HEIGHT40>A HREF./Bilder/bilder.html classnof-navButtonAnchor onmouseoverF_loadRollover(Navigationsschaltflaeche6,,0);F_roll(Navigationsschaltflaeche6,1) onmouseoutF_roll(Navigationsschaltflaeche6,0)>IMG IDNavigationsschaltflaeche6 NAMENavigationsschaltflaeche6 HEIGHT40 WIDTH147 SRC./Bilder_Nbuta1.jpg onmouseoverF_loadRollover(this,Bilder_NRbuta2.jpg,0) BORDER0 ALTBilder TITLEBilder>/A>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD WIDTH147 HEIGHT40>A IDNavigationsschaltflaeche7A HREFhttp://426442.guestbook.onetwomax.de onmouseoverF_loadRollover(Navigationsschaltflaeche7,,0);F_roll(Navigationsschaltflaeche7,1) onmouseoutF_roll(Navigationsschaltflaeche7,0)>IMG IDNavigationsschaltflaeche7 NAMENavigationsschaltflaeche7 HEIGHT40 WIDTH147 SRC./G-stebuch_Nbuta1.jpg onmouseoverF_loadRollover(this,G-stebuch_NRbuta2.jpg,0) BORDER0 ALTGästebuch TITLEGästebuch>/A>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD WIDTH147 HEIGHT40>A HREF./Interessante_Seiten/interessante_seiten.html classnof-navButtonAnchor onmouseoverF_loadRollover(Navigationsschaltflaeche8,,0);F_roll(Navigationsschaltflaeche8,1) onmouseoutF_roll(Navigationsschaltflaeche8,0)>IMG IDNavigationsschaltflaeche8 NAMENavigationsschaltflaeche8 HEIGHT40 WIDTH147 SRC./Interessante-Seiten_Nbuta1.jpg onmouseoverF_loadRollover(this,Interessante-Seiten_NRbuta2.jpg,0) BORDER0 ALTInteressante Seiten TITLEInteressante Seiten>/A>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD WIDTH147 HEIGHT40>A HREF./Crazy_Steffi/crazy_steffi.html classnof-navButtonAnchor onmouseoverF_loadRollover(Navigationsschaltflaeche9,,0);F_roll(Navigationsschaltflaeche9,1) onmouseoutF_roll(Navigationsschaltflaeche9,0)>IMG IDNavigationsschaltflaeche9 NAMENavigationsschaltflaeche9 HEIGHT40 WIDTH147 SRC./Crazy-Steffi_Nbuta1.jpg onmouseoverF_loadRollover(this,Crazy-Steffi_NRbuta2.jpg,0) BORDER0 ALTCrazy Steffi TITLECrazy Steffi>/A>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD WIDTH147 HEIGHT40>A IDNavigationsschaltflaeche10A HREFhttp://www.opelclubs.de/markt/markt.php3?l 73 onmouseoverF_loadRollover(Navigationsschaltflaeche10,,0);F_roll(Navigationsschaltflaeche10,1) onmouseoutF_roll(Navigationsschaltflaeche10,0)>IMG IDNavigationsschaltflaeche10 NAMENavigationsschaltflaeche10 HEIGHT40 WIDTH147 SRC./Opel-Teilemarkt_Nbuta1.jpg onmouseoverF_loadRollover(this,Opel-Teilemarkt_NRbuta2.jpg,0) BORDER0 ALTOpel Teilemarkt TITLEOpel Teilemarkt>/A>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD WIDTH147 HEIGHT40>A HREF./Pflanzen/pflanzen.html classnof-navButtonAnchor onmouseoverF_loadRollover(Navigationsschaltflaeche11,,0);F_roll(Navigationsschaltflaeche11,1) onmouseoutF_roll(Navigationsschaltflaeche11,0)>IMG IDNavigationsschaltflaeche11 NAMENavigationsschaltflaeche11 HEIGHT40 WIDTH147 SRC./Pflanzen_Nbuta1.jpg onmouseoverF_loadRollover(this,Pflanzen_NRbuta2.jpg,0) BORDER0 ALTPflanzen TITLEPflanzen>/A>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD WIDTH147 HEIGHT40>A HREF./Impressum/impressum.html classnof-navButtonAnchor onmouseoverF_loadRollover(Navigationsschaltflaeche12,,0);F_roll(Navigationsschaltflaeche12,1) onmouseoutF_roll(Navigationsschaltflaeche12,0)>IMG IDNavigationsschaltflaeche12 NAMENavigationsschaltflaeche12 HEIGHT40 WIDTH147 SRC./Impressum_Nbuta1.jpg onmouseoverF_loadRollover(this,Impressum_NRbuta2.jpg,0) BORDER0 ALTImpressum TITLEImpressum>/A>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD WIDTH147 HEIGHT40>A IDNavigationsschaltflaeche13A HREFhttp://www.disclaimer.de/disclaimer.htm?farbe0000CC/33FF00/000000/000000#1 onmouseoverF_loadRollover(Navigationsschaltflaeche13,,0);F_roll(Navigationsschaltflaeche13,1) onmouseoutF_roll(Navigationsschaltflaeche13,0)>IMG IDNavigationsschaltflaeche13 NAMENavigationsschaltflaeche13 HEIGHT40 WIDTH147 SRC./Haftungsausschluss_Nbuta1.jpg onmouseoverF_loadRollover(this,Haftungsausschluss_NRbuta2.jpg,0) BORDER0 ALTHaftungsausschluss TITLEHaftungsausschluss>/A>/TD> /TR> /TABLE> P>table border0 >tr>td>OBJECT classidclsid:D27CDB6E-AE6D-11cf-96B8-444553540000 codebasehttp://active.macromedia.com/flash2/cabs/swflash.cab#version4,0,0,0 IDdeutschland WIDTH151 HEIGHT178>PARAM NAMEmovie VALUEhttp://wetter.rtl.de/extern/generell/generator/deutschland/wetter_home.swf?id144043&keyf979f2d2f7b34bc1640a1e28fa9b4abb> PARAM NAMEmenu VALUEfalse>PARAM NAMEquality VALUEhigh>PARAM NAMEbgcolor VALUE#87a1cd> EMBED srchttp://wetter.rtl.de/extern/generell/generator/deutschland/wetter_home.swf?id144043&keyf979f2d2f7b34bc1640a1e28fa9b4abb qualityhigh menufalse bgcolor#87a1cd width151 height178 TYPEapplication/x-shockwave-flash PLUGINSPAGEhttp://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_VersionShockwaveFlash>/EMBED>/OBJECT>/td>/tr>/table>P>!-- Jadina Code START -->script languageJavaScript typetext/javascript>var id 2318;var using_frames 0;/script> script languageJavaScript typetext/javascript srchttp://www.jadina-counter.de/stats.js>/script> a target_blank hrefhttp://www.treffer100.de/artikel.htm?id7308>img altstats2318 border0 srchttp://www.jadina-counter.de/img.php?id2318>/a> !-- Jadina Code END -->/TD> TD COLSPAN22>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD HEIGHT115>/TD> TD COLSPAN8>/TD> TD COLSPAN10 ROWSPAN6 WIDTH548>IMG IDBild23 HEIGHT508 WIDTH548 SRC./Torsten1.jpg BORDER0 ALT>/TD> TD COLSPAN4>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD HEIGHT78>/TD> TD>/TD> TD COLSPAN3 ROWSPAN2 WIDTH59>IMG IDBild24 HEIGHT151 WIDTH59 SRC./Blitz2.gif BORDER0 ALT>/TD> TD COLSPAN4>/TD> TD COLSPAN4>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD HEIGHT73>/TD> TD>/TD> TD COLSPAN4>/TD> TD COLSPAN2>/TD> TD COLSPAN2 ROWSPAN2 WIDTH115>IMG IDBild25 HEIGHT159 WIDTH115 SRC./Blitz2.gif BORDER0 ALT>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD HEIGHT86>/TD> TD COLSPAN8>/TD> TD COLSPAN2>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD HEIGHT92>/TD> TD COLSPAN8>/TD> TD COLSPAN4>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN10 HEIGHT64>/TD> TD COLSPAN4>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN24 HEIGHT268>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN18 HEIGHT67>/TD> TD COLSPAN5 WIDTH69>IMG IDBild27 HEIGHT67 WIDTH69 SRC./Oplogo.gif BORDER0 ALT>/TD> TD>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN24 HEIGHT25>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN13 HEIGHT80>/TD> TD ROWSPAN2 WIDTH226>IMG IDBild34 HEIGHT170 WIDTH226 SRC./Torsten_Ascona11.JPG BORDER0 ALT>/TD> TD COLSPAN10>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN7 HEIGHT90>/TD> TD COLSPAN5 ROWSPAN2 WIDTH125>IMG IDBild26 HEIGHT158 WIDTH125 SRC./Blitz2.gif BORDER0 ALT>/TD> TD>/TD> TD COLSPAN10>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN7 HEIGHT68>/TD> TD COLSPAN12>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN24 HEIGHT92>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN5>/TD> TD COLSPAN14 WIDTH613 IDText2> P ALIGNCENTER>B>FONT COLOR#FF0000 SIZE-1>U>Alle Bestandteile der Homepage dü/U>/FONT>FONT COLOR#FF0000>U>rfen nicht ohne schriftliche Genehmigung verwendet werden./U>/FONT>/B>/P> /TD> TD COLSPAN5>/TD> /TR> /TABLE>/BODY>/HTML>
Port 443
HTTP/1.1 200 OKContent-Type: text/htmlContent-Length: 26054Connection: keep-aliveKeep-Alive: timeout15Date: Sat, 09 Nov 2024 23:24:17 GMTServer: ApacheLast-Modified: Mon, 14 Jan 2019 07:55:08 GMTETag: 65c6-57f665d0bec63Accept-Ranges: bytes br>script languageJavaScript>var message;function clickIE() {if (document.all) {(message);return false;}}function clickNS(e) {if (document.layers||(document.getElementById&&!document.all)) {if (e.which2||e.which3) {(message);return false;}}}if (document.layers) {document.captureEvents(Event.MOUSEDOWN);document.onmousedownclickNS;}else{document.onmouseupclickNS;document.oncontextmenuclickIE;}/script>/br>div iddot0 styleposition: absolute; visibility: hidden; height: 11; width: 11;>img srcbullet.gif height11 width11>/div>div iddot1 styleposition: absolute; height: 11; width: 11;>img srchttp://members.tripod.de/mauscodetester/bullet.gif height11 width11>/div>div iddot2 styleposition: absolute; height: 11; width: 11;>img srchttp://members.tripod.de/mauscodetester/bullet.gif height11 width11>/div>div iddot3 styleposition: absolute; height: 11; width: 11;>img srchttp://members.tripod.de/mauscodetester/bullet.gif height11 width11>/div>div iddot4 styleposition: absolute; height: 11; width: 11;>img srchttp://members.tripod.de/mauscodetester/bullet.gif height11 width11>/div>div iddot5 styleposition: absolute; height: 11; width: 11;>img srchttp://members.tripod.de/mauscodetester/bullet.gif height11 width11>/div>div iddot6 styleposition: absolute; height: 11; width: 11;>img srchttp://members.tripod.de/mauscodetester/bullet.gif height11 width11>/div>script LANGUAGEJavaScript>!-- hide code/*Elastic Trail script (By Philip Winston @ pwinston@yahoo.com, URL:http://members.xoom.com/ebullets)Script featured on Dynamicdrive.comFor this and 100s more DHTML scripts, visit http://dynamicdrive.com*/// Thanks to Troels Jakobsen tjak@get2net.dk>// for fix which makes it work when the page is scrolledvar nDots 7;if (document.all&&window.print)document.body.style.cssTextoverflow-x:hidden;overflow-y:scrollvar Xpos 0;var Ypos 0; // fixed time step, no relation to real timevar DELTAT .01; // size of one spring in pixelsvar SEGLEN 10; // spring constant, stiffness of springsvar SPRINGK 10; // all the physics is bogus, just picked stuff to // make it look okayvar MASS 1;var GRAVITY 50;var RESISTANCE 10; // stopping criterea to prevent endless jittering // doesnt work when sitting on bottom since floor // doesnt push back so acceleration always as big // as gravityvar STOPVEL 0.1;var STOPACC 0.1;var DOTSIZE 11; // BOUNCE is percent of velocity retained when // bouncing off a wallvar BOUNCE 0.75;var isNetscape navigator.appNameNetscape; // always on for now, could be played with to // let dots fall to botton, get thrown, etc.var followmouse true;var dots new Array();init();function init(){ var i 0; for (i 0; i nDots; i++) { dotsi new dot(i); } if (!isNetscape) { // I only know how to read the locations of the // LI> items in IE //skip this for now // setInitPositions(dots) } // set their positions for (i 0; i nDots; i++) { dotsi.obj.left dotsi.X; dotsi.obj.top dotsi.Y; } if (isNetscape) { // start right away since they are positioned // at 0, 0 startanimate(); } else { // let dots sit there for a few seconds // since theyre hiding on the real bullets setTimeout(startanimate(), 2000); }}function dot(i) { this.X Xpos; this.Y Ypos; this.dx 0; this.dy 0; if (isNetscape) { this.obj eval(document.dot + i); } else { this.obj eval(dot + i + .style); }}function startanimate() { setInterval(animate(), 20);}// This is to line up the bullets with actual LI tags on the page// Had to add -DOTSIZE to X and 2*DOTSIZE to Y for IE 5, not sure why// Still doesnt work greatfunction setInitPositions(dots){ // initialize dot positions to be on top // of the bullets in the ul> var startloc document.all.tags(LI); var i 0; for (i 0; i startloc.length && i (nDots - 1); i++) { dotsi+1.X startloci.offsetLeft startloci.offsetParent.offsetLeft - DOTSIZE; dotsi+1.Y startloci.offsetTop + startloci.offsetParent.offsetTop + 2*DOTSIZE; } // put 0th dot above 1st (it is hidden) dots0.X dots1.X; dots0.Y dots1.Y - SEGLEN;}// just save mouse position for animate() to usefunction MoveHandler(e){ Xpos e.pageX; Ypos e.pageY; return true;}// just save mouse position for animate() to usefunction MoveHandlerIE() { Xpos window.event.x + document.body.scrollLeft; Ypos window.event.y + document.body.scrollTop; }if (isNetscape) { document.captureEvents(Event.MOUSEMOVE); document.onMouseMove MoveHandler;} else { document.onmousemove MoveHandlerIE;}function vec(X, Y){ this.X X; this.Y Y;}// adds force in X and Y to spring for doti on dotjfunction springForce(i, j, spring){ var dx (dotsi.X - dotsj.X); var dy (dotsi.Y - dotsj.Y); var len Math.sqrt(dx*dx + dy*dy); if (len > SEGLEN) { var springF SPRINGK * (len - SEGLEN); spring.X + (dx / len) * springF; spring.Y + (dy / len) * springF; }}function animate() { // dots0 follows the mouse, // though no dot is drawn there var start 0; if (followmouse) { dots0.X Xpos; dots0.Y Ypos; start 1; } for (i start ; i nDots; i++ ) { var spring new vec(0, 0); if (i > 0) { springForce(i-1, i, spring); } if (i (nDots - 1)) { springForce(i+1, i, spring); } // air resisitance/friction var resist new vec(-dotsi.dx * RESISTANCE, -dotsi.dy * RESISTANCE); // compute new accel, including gravity var accel new vec((spring.X + resist.X)/ MASS, (spring.Y + resist.Y)/ MASS + GRAVITY); // compute new velocity dotsi.dx + (DELTAT * accel.X); dotsi.dy + (DELTAT * accel.Y); // stop dead so it doesnt jitter when nearly still if (Math.abs(dotsi.dx) STOPVEL && Math.abs(dotsi.dy) STOPVEL && Math.abs(accel.X) STOPACC && Math.abs(accel.Y) STOPACC) { dotsi.dx 0; dotsi.dy 0; } // move to new position dotsi.X + dotsi.dx; dotsi.Y + dotsi.dy; // get size of window var height, width; if (isNetscape) { height window.innerHeight + document.scrollTop; width window.innerWidth + document.scrollLeft; } else { height document.body.clientHeight + document.body.scrollTop; width document.body.clientWidth + document.body.scrollLeft; } // bounce of 3 walls (leave ceiling open) if (dotsi.Y > height - DOTSIZE - 1) { if (dotsi.dy > 0) { dotsi.dy BOUNCE * -dotsi.dy; } dotsi.Y height - DOTSIZE - 1; } if (dotsi.X > width - DOTSIZE) { if (dotsi.dx > 0) { dotsi.dx BOUNCE * -dotsi.dx; } dotsi.X width - DOTSIZE - 1; } if (dotsi.X 0) { if (dotsi.dx 0) { dotsi.dx BOUNCE * -dotsi.dx; } dotsi.X 0; } // move img to new position dotsi.obj.left dotsi.X; dotsi.obj.top dotsi.Y; }}// end code hiding -->/script>!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN>HTML>HEAD>TITLE>asconaV6/TITLE>META HTTP-EQUIVContent-Type CONTENTtext/html; charsetISO-8859-1>META NAMEGenerator CONTENTNetObjects Fusion 7 für Windows>META NAMEAuthor CONTENTHelmut Witenius>SCRIPT TYPEtext/javascript>!--function F_loadRollover(){} function F_roll(){}//-->/SCRIPT>SCRIPT TYPEtext/javascript SRC./rollover.js>/SCRIPT>/HEAD>BODY BGCOLOR#0000CC BACKGROUND./Back30.gif TEXT#000000 LINK#CDC51D VLINK#808080> TABLE BORDER0 CELLSPACING0 CELLPADDING0 WIDTH997> TR VALIGNTOP ALIGNLEFT> TD HEIGHT37 WIDTH12>IMG SRC./clearpixel.gif WIDTH12 HEIGHT1 BORDER0 ALT>/TD> TD>/TD> TD WIDTH37>IMG SRC./clearpixel.gif WIDTH37 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH20>IMG SRC./clearpixel.gif WIDTH20 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH8>IMG SRC./clearpixel.gif WIDTH8 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH31>IMG SRC./clearpixel.gif WIDTH31 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH7>IMG SRC./clearpixel.gif WIDTH7 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH34>IMG SRC./clearpixel.gif WIDTH34 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH7>IMG SRC./clearpixel.gif WIDTH7 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH5>IMG SRC./clearpixel.gif WIDTH5 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH25>IMG SRC./clearpixel.gif WIDTH25 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH54>IMG SRC./clearpixel.gif WIDTH54 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH123>IMG SRC./clearpixel.gif WIDTH123 HEIGHT1 BORDER0 ALT>/TD> TD>/TD> TD WIDTH35>IMG SRC./clearpixel.gif WIDTH35 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH8>IMG SRC./clearpixel.gif WIDTH8 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH39>IMG SRC./clearpixel.gif WIDTH39 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH10>IMG SRC./clearpixel.gif WIDTH10 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH9>IMG SRC./clearpixel.gif WIDTH9 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH19>IMG SRC./clearpixel.gif WIDTH19 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH3>IMG SRC./clearpixel.gif WIDTH3 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH23>IMG SRC./clearpixel.gif WIDTH23 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH15>IMG SRC./clearpixel.gif WIDTH15 HEIGHT1 BORDER0 ALT>/TD> TD WIDTH100>IMG SRC./clearpixel.gif WIDTH100 HEIGHT1 BORDER0 ALT>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN16 HEIGHT1>/TD> TD COLSPAN5 ROWSPAN4 WIDTH80>IMG IDBild33 HEIGHT70 WIDTH80 SRC./opel_zeichen_neu.gif BORDER0 ALT>/TD> TD COLSPAN3>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN4 HEIGHT4>/TD> TD COLSPAN4 ROWSPAN4 WIDTH80>IMG IDBild32 HEIGHT70 WIDTH80 SRC./opel_zeichen_neu.gif BORDER0 ALT>/TD> TD COLSPAN8>/TD> TD COLSPAN3>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN4 HEIGHT60>/TD> TD>/TD> TD COLSPAN6 WIDTH468>IMG IDBild29 HEIGHT60 WIDTH468 SRC./bannerasconav6-3.jpg BORDER0 ALT>/TD> TD>/TD> TD COLSPAN3>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN4 HEIGHT5>/TD> TD COLSPAN8>/TD> TD COLSPAN3>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN4 HEIGHT1>/TD> TD COLSPAN16>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN24 HEIGHT36>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN11>/TD> TD COLSPAN6 WIDTH485 IDText3> P>FONT COLOR#FFFFFF> /FONT>/P> P> /P> P>FONT COLOR#FFFFFF>Wer Ascona Teile (egal welche) abzugeben hat, bitte bei mir melden!/FONT>/P> P>FONT COLOR#FFFFFF>Suche speziell Klimabedienteil vom Ascona, magnetische Kofferraumentriegelung und 2 Türerteile! Aber bitte jede vorhandene Originalschraube anbieten/FONT>/P> P> /P> /TD> TD COLSPAN7>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN24 HEIGHT22>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD HEIGHT76>/TD> TD ROWSPAN6 WIDTH147> TABLE IDNavigationBar1 BORDER0 CELLSPACING0 CELLPADDING0 WIDTH147> TR VALIGNTOP ALIGNLEFT> TD WIDTH147 HEIGHT40>A HREF./Uber_mich/uber_mich.html classnof-navButtonAnchor onmouseoverF_loadRollover(Navigationsschaltflaeche1,,0);F_roll(Navigationsschaltflaeche1,1) onmouseoutF_roll(Navigationsschaltflaeche1,0)>IMG IDNavigationsschaltflaeche1 NAMENavigationsschaltflaeche1 HEIGHT40 WIDTH147 SRC./-ber-mich_Nbuta1.jpg onmouseoverF_loadRollover(this,-ber-mich_NRbuta2.jpg,0) BORDER0 ALTÜber mich TITLEÜber mich>/A>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD WIDTH147 HEIGHT40>A HREF./Ascona/ascona.html classnof-navButtonAnchor onmouseoverF_loadRollover(Navigationsschaltflaeche2,,0);F_roll(Navigationsschaltflaeche2,1) onmouseoutF_roll(Navigationsschaltflaeche2,0)>IMG IDNavigationsschaltflaeche2 NAMENavigationsschaltflaeche2 HEIGHT40 WIDTH147 SRC./Ascona_Nbuta1.jpg onmouseoverF_loadRollover(this,Ascona_NRbuta2.jpg,0) BORDER0 ALTAscona TITLEAscona>/A>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD WIDTH147 HEIGHT40>A HREF./Vectra/vectra.html classnof-navButtonAnchor onmouseoverF_loadRollover(Navigationsschaltflaeche3,,0);F_roll(Navigationsschaltflaeche3,1) onmouseoutF_roll(Navigationsschaltflaeche3,0)>IMG IDNavigationsschaltflaeche3 NAMENavigationsschaltflaeche3 HEIGHT40 WIDTH147 SRC./Vectra_Nbuta1.jpg onmouseoverF_loadRollover(this,Vectra_NRbuta2.jpg,0) BORDER0 ALTVectra TITLEVectra>/A>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD WIDTH147 HEIGHT40>A HREF./CBR_900RR/cbr_900rr.html classnof-navButtonAnchor onmouseoverF_loadRollover(Navigationsschaltflaeche4,,0);F_roll(Navigationsschaltflaeche4,1) onmouseoutF_roll(Navigationsschaltflaeche4,0)>IMG IDNavigationsschaltflaeche4 NAMENavigationsschaltflaeche4 HEIGHT40 WIDTH147 SRC./CBR-900RR_Nbuta1.jpg onmouseoverF_loadRollover(this,CBR-900RR_NRbuta2.jpg,0) BORDER0 ALTCBR 900RR TITLECBR 900RR>/A>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD WIDTH147 HEIGHT40>A HREF./Geocachen/geocachen.html classnof-navButtonAnchor onmouseoverF_loadRollover(Navigationsschaltflaeche5,,0);F_roll(Navigationsschaltflaeche5,1) onmouseoutF_roll(Navigationsschaltflaeche5,0)>IMG IDNavigationsschaltflaeche5 NAMENavigationsschaltflaeche5 HEIGHT40 WIDTH147 SRC./Geocachen_Nbuta1.jpg onmouseoverF_loadRollover(this,Geocachen_NRbuta2.jpg,0) BORDER0 ALTGeocachen TITLEGeocachen>/A>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD WIDTH147 HEIGHT40>A HREF./Bilder/bilder.html classnof-navButtonAnchor onmouseoverF_loadRollover(Navigationsschaltflaeche6,,0);F_roll(Navigationsschaltflaeche6,1) onmouseoutF_roll(Navigationsschaltflaeche6,0)>IMG IDNavigationsschaltflaeche6 NAMENavigationsschaltflaeche6 HEIGHT40 WIDTH147 SRC./Bilder_Nbuta1.jpg onmouseoverF_loadRollover(this,Bilder_NRbuta2.jpg,0) BORDER0 ALTBilder TITLEBilder>/A>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD WIDTH147 HEIGHT40>A IDNavigationsschaltflaeche7A HREFhttp://426442.guestbook.onetwomax.de onmouseoverF_loadRollover(Navigationsschaltflaeche7,,0);F_roll(Navigationsschaltflaeche7,1) onmouseoutF_roll(Navigationsschaltflaeche7,0)>IMG IDNavigationsschaltflaeche7 NAMENavigationsschaltflaeche7 HEIGHT40 WIDTH147 SRC./G-stebuch_Nbuta1.jpg onmouseoverF_loadRollover(this,G-stebuch_NRbuta2.jpg,0) BORDER0 ALTGästebuch TITLEGästebuch>/A>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD WIDTH147 HEIGHT40>A HREF./Interessante_Seiten/interessante_seiten.html classnof-navButtonAnchor onmouseoverF_loadRollover(Navigationsschaltflaeche8,,0);F_roll(Navigationsschaltflaeche8,1) onmouseoutF_roll(Navigationsschaltflaeche8,0)>IMG IDNavigationsschaltflaeche8 NAMENavigationsschaltflaeche8 HEIGHT40 WIDTH147 SRC./Interessante-Seiten_Nbuta1.jpg onmouseoverF_loadRollover(this,Interessante-Seiten_NRbuta2.jpg,0) BORDER0 ALTInteressante Seiten TITLEInteressante Seiten>/A>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD WIDTH147 HEIGHT40>A HREF./Crazy_Steffi/crazy_steffi.html classnof-navButtonAnchor onmouseoverF_loadRollover(Navigationsschaltflaeche9,,0);F_roll(Navigationsschaltflaeche9,1) onmouseoutF_roll(Navigationsschaltflaeche9,0)>IMG IDNavigationsschaltflaeche9 NAMENavigationsschaltflaeche9 HEIGHT40 WIDTH147 SRC./Crazy-Steffi_Nbuta1.jpg onmouseoverF_loadRollover(this,Crazy-Steffi_NRbuta2.jpg,0) BORDER0 ALTCrazy Steffi TITLECrazy Steffi>/A>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD WIDTH147 HEIGHT40>A IDNavigationsschaltflaeche10A HREFhttp://www.opelclubs.de/markt/markt.php3?l 73 onmouseoverF_loadRollover(Navigationsschaltflaeche10,,0);F_roll(Navigationsschaltflaeche10,1) onmouseoutF_roll(Navigationsschaltflaeche10,0)>IMG IDNavigationsschaltflaeche10 NAMENavigationsschaltflaeche10 HEIGHT40 WIDTH147 SRC./Opel-Teilemarkt_Nbuta1.jpg onmouseoverF_loadRollover(this,Opel-Teilemarkt_NRbuta2.jpg,0) BORDER0 ALTOpel Teilemarkt TITLEOpel Teilemarkt>/A>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD WIDTH147 HEIGHT40>A HREF./Pflanzen/pflanzen.html classnof-navButtonAnchor onmouseoverF_loadRollover(Navigationsschaltflaeche11,,0);F_roll(Navigationsschaltflaeche11,1) onmouseoutF_roll(Navigationsschaltflaeche11,0)>IMG IDNavigationsschaltflaeche11 NAMENavigationsschaltflaeche11 HEIGHT40 WIDTH147 SRC./Pflanzen_Nbuta1.jpg onmouseoverF_loadRollover(this,Pflanzen_NRbuta2.jpg,0) BORDER0 ALTPflanzen TITLEPflanzen>/A>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD WIDTH147 HEIGHT40>A HREF./Impressum/impressum.html classnof-navButtonAnchor onmouseoverF_loadRollover(Navigationsschaltflaeche12,,0);F_roll(Navigationsschaltflaeche12,1) onmouseoutF_roll(Navigationsschaltflaeche12,0)>IMG IDNavigationsschaltflaeche12 NAMENavigationsschaltflaeche12 HEIGHT40 WIDTH147 SRC./Impressum_Nbuta1.jpg onmouseoverF_loadRollover(this,Impressum_NRbuta2.jpg,0) BORDER0 ALTImpressum TITLEImpressum>/A>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD WIDTH147 HEIGHT40>A IDNavigationsschaltflaeche13A HREFhttp://www.disclaimer.de/disclaimer.htm?farbe0000CC/33FF00/000000/000000#1 onmouseoverF_loadRollover(Navigationsschaltflaeche13,,0);F_roll(Navigationsschaltflaeche13,1) onmouseoutF_roll(Navigationsschaltflaeche13,0)>IMG IDNavigationsschaltflaeche13 NAMENavigationsschaltflaeche13 HEIGHT40 WIDTH147 SRC./Haftungsausschluss_Nbuta1.jpg onmouseoverF_loadRollover(this,Haftungsausschluss_NRbuta2.jpg,0) BORDER0 ALTHaftungsausschluss TITLEHaftungsausschluss>/A>/TD> /TR> /TABLE> P>table border0 >tr>td>OBJECT classidclsid:D27CDB6E-AE6D-11cf-96B8-444553540000 codebasehttp://active.macromedia.com/flash2/cabs/swflash.cab#version4,0,0,0 IDdeutschland WIDTH151 HEIGHT178>PARAM NAMEmovie VALUEhttp://wetter.rtl.de/extern/generell/generator/deutschland/wetter_home.swf?id144043&keyf979f2d2f7b34bc1640a1e28fa9b4abb> PARAM NAMEmenu VALUEfalse>PARAM NAMEquality VALUEhigh>PARAM NAMEbgcolor VALUE#87a1cd> EMBED srchttp://wetter.rtl.de/extern/generell/generator/deutschland/wetter_home.swf?id144043&keyf979f2d2f7b34bc1640a1e28fa9b4abb qualityhigh menufalse bgcolor#87a1cd width151 height178 TYPEapplication/x-shockwave-flash PLUGINSPAGEhttp://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_VersionShockwaveFlash>/EMBED>/OBJECT>/td>/tr>/table>P>!-- Jadina Code START -->script languageJavaScript typetext/javascript>var id 2318;var using_frames 0;/script> script languageJavaScript typetext/javascript srchttp://www.jadina-counter.de/stats.js>/script> a target_blank hrefhttp://www.treffer100.de/artikel.htm?id7308>img altstats2318 border0 srchttp://www.jadina-counter.de/img.php?id2318>/a> !-- Jadina Code END -->/TD> TD COLSPAN22>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD HEIGHT115>/TD> TD COLSPAN8>/TD> TD COLSPAN10 ROWSPAN6 WIDTH548>IMG IDBild23 HEIGHT508 WIDTH548 SRC./Torsten1.jpg BORDER0 ALT>/TD> TD COLSPAN4>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD HEIGHT78>/TD> TD>/TD> TD COLSPAN3 ROWSPAN2 WIDTH59>IMG IDBild24 HEIGHT151 WIDTH59 SRC./Blitz2.gif BORDER0 ALT>/TD> TD COLSPAN4>/TD> TD COLSPAN4>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD HEIGHT73>/TD> TD>/TD> TD COLSPAN4>/TD> TD COLSPAN2>/TD> TD COLSPAN2 ROWSPAN2 WIDTH115>IMG IDBild25 HEIGHT159 WIDTH115 SRC./Blitz2.gif BORDER0 ALT>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD HEIGHT86>/TD> TD COLSPAN8>/TD> TD COLSPAN2>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD HEIGHT92>/TD> TD COLSPAN8>/TD> TD COLSPAN4>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN10 HEIGHT64>/TD> TD COLSPAN4>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN24 HEIGHT268>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN18 HEIGHT67>/TD> TD COLSPAN5 WIDTH69>IMG IDBild27 HEIGHT67 WIDTH69 SRC./Oplogo.gif BORDER0 ALT>/TD> TD>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN24 HEIGHT25>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN13 HEIGHT80>/TD> TD ROWSPAN2 WIDTH226>IMG IDBild34 HEIGHT170 WIDTH226 SRC./Torsten_Ascona11.JPG BORDER0 ALT>/TD> TD COLSPAN10>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN7 HEIGHT90>/TD> TD COLSPAN5 ROWSPAN2 WIDTH125>IMG IDBild26 HEIGHT158 WIDTH125 SRC./Blitz2.gif BORDER0 ALT>/TD> TD>/TD> TD COLSPAN10>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN7 HEIGHT68>/TD> TD COLSPAN12>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN24 HEIGHT92>/TD> /TR> TR VALIGNTOP ALIGNLEFT> TD COLSPAN5>/TD> TD COLSPAN14 WIDTH613 IDText2> P ALIGNCENTER>B>FONT COLOR#FF0000 SIZE-1>U>Alle Bestandteile der Homepage dü/U>/FONT>FONT COLOR#FF0000>U>rfen nicht ohne schriftliche Genehmigung verwendet werden./U>/FONT>/B>/P> /TD> TD COLSPAN5>/TD> /TR> /TABLE>/BODY>/HTML>
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]