ich möchte in ein php-script noch ein anderes einbauen: was auch funktioniert:Aber !!!!!
was dann nach dem eingebauten script ist sieht man nicht mehr auf meiner seite….nur was davor ist….was mache ich falsch????
<?php
require_once('include/config.inc.php');
require_once('include/content.inc.php');
require_once('SOAP/nusoap.php');
$Keywords = ucwords($Keywords);
if ($PriceMin != "") {
$PriceMin = (int) $PriceMin;
}
if ($PriceMax != "") {
$PriceMax = (int) $PriceMax;
}
$arr_shoplist=array('PartnerID' => $PartnerID, 'Password' => $Password);
$arr_categories=array('PartnerID' => $PartnerID, 'Password' => $Password, 'ShopID' => $ShopID);
$arr_category=array('PartnerID' => $PartnerID, 'Password' => $Password, 'ShopID' => $ShopID, 'CategoryID' => $CategoryID);
$arr_categoryproducts=array('PartnerID' => $PartnerID, 'Password' => $Password, 'ShopID' => $ShopID, 'CategoryID' => $CategoryID, 'UseAffilinetCategories' => $UseAffilinetCategories, 'IncludeChildNodes' => $IncludeChildNodes, 'Keywords' => $Keywords, 'WithImgOnly' => $WithImgOnly, 'ShowDetail' => $ShowDetail, 'ImageSize' => $ImageSize, 'Page' => $Page, 'PageSize' => $PageSize, 'PriceMin' => $PriceMin, 'PriceMax' => $PriceMax, 'OrderBy' => $OrderBy, 'OrderDirection' => $OrderDirection);
$arr_product=array('PartnerID' => $PartnerID, 'Password' => $Password, 'ProductID' => $ProductID);
$arr_search=array('PartnerID' => $PartnerID, 'Password' => $Password, 'ShopID' => $ShopID, 'Keywords' => $Keywords, 'WithImgOnly' => $WithImgOnly, 'ShowDetail' => $ShowDetail, 'ImageSize' => $ImageSize, 'Page' => $Page, 'PageSize' => $PageSize, 'PriceMin' => $PriceMin, 'PriceMax' => $PriceMax, 'OrderBy' => $OrderBy, 'OrderDirection' => $OrderDirection);
$WSDL_URL="http://webservices.affili.net/pdws/ProductDataV1.asmx?WSDL";
$client=new soapclient2($WSDL_URL, true);
$proxy=$client->getProxy();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<html>
<head>
<title><? echo $Title; ?></title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<meta http-equiv="pragma" content="no-cache">
<meta name="robots" content="INDEX,FOLLOW">
<meta http-equiv="content-language" content="de">
<meta name="description" content="<? echo $Description; ?>">
<meta name="keywords" content="<? echo $Description; ?>">
<meta name="revisit-after" content="7 days">
<meta name="siteinfo" content="robots.txt">
<link href="css/global.css" type="text/css" rel="stylesheet" /><link rel="shortcut icon" href="images/favicon.ico">
</head>
<body OnLoad="document.search.Keywords.focus();">
<div id="main">
<div id="header"><a href="http://www.gas-strom-vergleiche.de" id="logo" name="top"><img ="logo.gif"></a>
<div id="top_ad">
<a href="ver" ><img src="img/ver.gif"WIDTH=219 HEIGHT=35 alt="" border="0"></img></a>
<a href="hot"><img src="img/hot.gif"WIDTH=189 HEIGHT=35 alt="" border="0"></img></a>
<!-- Werbung Top -->
</div>
<ul id="navbar">
<li><a href="index.php"><span><span>Startseite</span></span></a></li>
<li><a href="strompreisvergleich.php"><span><span>Strompreisvergleich</span></span></a></li>
<li><a href="gaspreisvergleich.php"><span><span>Gaspreisvergleich</span></span></a></li>
<li><a href="verbraucherinformation.php"><span><span>Verbraucherinformation</span></span></a></li>
<li><a href="spartipps.php"><span><span>Spartipps</span></span></a></li>
<li><a href="impressum.php"><span><span>Impressum</span></span></a></li>
</ul>
</div>
<div id="content">
<!-- Anfang linke Spalte -->
<div id="box_left">
<!-- Beginn Tag Cloud -->
<div id="tagcloud">
<fieldset>
<legend>Jetzt kostenlos vergleichen, wechseln und sparen </legend>
<h1>Hier aus mehreren Millionen Artikeln suchen und vergleichen! </h1></h1>
<p align="justify"><img src="img/ix_01.jpg" width="232" height="155" style="float:left; padding:5px; margin-right:10px; margin-bottom:5px; border:1px #D8D8D8 solid;" /></p>
<p align="justify">Auf Preisevergleicher.de finden Sie derzeit ca. über 1 Millionen Produkte mit Angeboten und Preisen tausenden Onlineshops, Fernsehshops, Reisebüros oder Versandhäusern.
Wir sind ein unabhängiges Preisvergleichsportal und hier können Sie den günstigsten Artikel im Internet finden!
Weiter unten gibt es aber auch Tipps und Vergleiche zu Strom - Gas - und Hotel Anbietern.
Der Preisvergleich ist völlig kostenlos. Unsere Preise und Angebote werden ständig aktualisiert. </p>
<?php
if(empty($action)) {
require_once('home.php');
}
if($action=='search') {
$Result=$proxy->searchProducts($arr_search);
if ($Result['searchProductsResult']['Records'] > "0") {
echo search($Result['searchProductsResult']['Items']['Item'],$Keywords,$PriceMin,$PriceMax,$OrderBy,$OrderDirection,$Page,$PageSize);
} else {
echo nofounds($Keywords,$PriceMin,$PriceMax,$OrderBy,$OrderDirection);
}
}
if($action=='csearch') {
$Result=$proxy->searchProductsInCategory($arr_categoryproducts);
if ($Result['searchProductsInCategoryResult']['Records'] > "0") {
echo search($Result['searchProductsInCategoryResult']['Items']['Item'],$Keywords,$PriceMin,$PriceMax,$OrderBy,$OrderDirection,$Page,$PageSize);
} else {
echo nofounds($Keywords,$PriceMin,$PriceMax,$OrderBy,$OrderDirection);
}
}
if($action=='impressum') {
require_once('impressum.php');
}
if($action=='haftung') {
require_once('haftung.php');
}
?>
<!-- Beginn Info -->
<div id="info">
<fieldset>
<legend>Verbraucher Informationen </legend>
<p>Ihre Anzeige</p>
</fieldset>
<!-- Beginn Textbox -->
<fieldset>
<legend>Warum den EnergiepreisCheck?</legend>
<h1>Energietarife vergleichen: Einsparung von bis zu 400,00 Euro möglich</h1>
<p>Versorgerwechsel leicht gemacht mit unserem
TÜV-geprüften Partner Wechseln.de - somit sparen Sie ohne Risiken bei
Ihrer nächsten Stromrechnung. <br />
<br />
Erst Gas- und/oder Stromvergleich starten - dann wechseln und
sparen. Vergleichen sie jetzt kostenlos! Hohe
Einsparungen sind möglich.</p>
<p> </p>
<p>Mehr erfahren Sie im Bereich <a href="verbraucherinformation.php" title="Verbraucherinformationen zum Thema Energie">Verbraucherinformationen</a></p>
</fieldset>
<!-- Beginn TOP 5 Spartipps -->
<fieldset>
<legend>Spartipps</legend>
<h1>Top 5 unserer Spartipps</h1>
<p>Bringen Energiesparlampen eine wirkliche Einsparung?</p>
<p>Kann ich den wirklichen Stromverbrauch meiner Geräte feststellen?</p>
<p>Welche Temperatur ist die optimale Niedrigeinstellung bei Abwesenheit?</p>
<p>Spart man Gas, wenn man für die Warmwasserbereitung einen Durchlauferhitzer benutzt?</p>
<p>Soll man das warme Wasser immer an lassen?</p>
<p><a href="spartipps.php">Alle Spartipps lesen »</a></p>
</fieldset>
</div>
<!-- Ende Content -->
</div>
<!-- Anfang rechte Spalte -->
<div id="box_right">
<!-- Beginn Social Bookmark -->
<div id="socialbookmark">
<fieldset>
<legend><a target="_blank" href="http://www.social-bookmark-script.de/" style="color: #999999;text-decoration: none;font-family: Verdana, Arial, Helvetica, sans-serif;font-size: 10px;">Social Bookmark</a></legend>
<!--
* Social Bookmark Script
* @ Version 2.1
* @ Copyright (C) 2006-2008 by Alexander Hadj Hassine - All rights reserved
* @ Website
http://www.social-bookmark-script.de/
* @
* @ Bei Nutzung des Scripts muessen alle unsere Copyright-Hinweise und Links in dem Script selbst,
* @ sowie in der Anzeige/Ausgabe unveraendert bleiben!
* @
* @ D.h., sie duerfen nicht entfernt, umgewandelt, versteckt oder unsichtbar gemacht werden,
* @ es sei den Sie verlinken
http://www.social-bookmark-script.de/ mindestens 1 mal
* @ "suchmaschinenfreundlich" von Ihrer Startseite!
-->
<script language="JavaScript" type="text/JavaScript">
<!--
function Social_Load() {
var d=document; if(d.images){ if(!d.Social) d.Social=new Array();
var i,j=d.Social.length,a=Social_Load.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.Social[j]=new Image; d.Social[j++].src=a[i];}}
}
Social_Load('./img/minota.gif',
'http://www.social-bookmark-script.de/img/bookmarks/wong_trans_ani.gif','http://www.social-bookmark-script.de/img/bookmarks/webnews_trans_ani.gif','http://www.social-bookmark-script.de/img/bookmarks/icio_trans_ani.gif','http://www.social-bookmark-script.de/img/bookmarks/oneview_trans_ani.gif','http://www.social-bookmark-script.de/img/bookmarks/folkd_trans_ani.gif','http://www.social-bookmark-script.de/img/bookmarks/yigg_trans_ani.gif','http://www.social-bookmark-script.de/img/bookmarks/linkarena_trans_ani.gif','http://www.social-bookmark-script.de/img/bookmarks/linksilo_trans_ani.gif','http://www.social-bookmark-script.de/img/bookmarks/readster_trans_ani.gif','http://www.social-bookmark-script.de/img/bookmarks/seekxl_trans_ani.gif','http://www.social-bookmark-script.de/img/bookmarks/favit_trans_ani.gif','http://www.social-bookmark-script.de/img/bookmarks/favoriten_trans_ani.gif','http://www.social-bookmark-script.de/img/bookmarks/digg_trans_ani.gif','http://www.social-bookmark-script.de/img/bookmarks/del_trans_ani.gif','http://www.social-bookmark-script.de/img/bookmarks/facebook_trans_ani.gif','http://www.social-bookmark-script.de/img/bookmarks/reddit_trans_ani.gif','http://www.social-bookmark-script.de/img/bookmarks/slashdot_trans_ani.gif','http://www.social-bookmark-script.de/img/bookmarks/furl_trans_ani.gif','http://www.social-bookmark-script.de/img/bookmarks/blinklist_trans_ani.gif','http://www.social-bookmark-script.de/img/bookmarks/technorati_trans_ani.gif','http://www.social-bookmark-script.de/img/bookmarks/newsvine_trans_ani.gif','http://www.social-bookmark-script.de/load.gif')
function schnipp() {
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function schnupp(n, d) {
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=schnupp(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function schnapp() {
var i,j=0,x,a=schnapp.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=schnupp(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->
</script>
<noscript><a href="http://www.social-bookmark-script.de/" target="_blank">web2.0 optimierung</a></noscript>
<a rel="nofollow" style="text-decoration:none;" href="http://www.minota.de/" onclick="window.open('http://www.minota.de/account/bookmark/');return false;" title="Bookmark bei mi:nota" onmouseover="schnapp('minota','','./img/minota.gif',1)" onmouseout="schnipp()" > <img style="padding-bottom:1px;" src="./img/minota.gif" alt="Bookmark bei mi:nota" name="minota" border="0" id="minota"> </a>
<a rel="nofollow" style="text-decoration:none;" href="http://www.mister-wong.de/" onclick="window.open('http://www.mister-wong.de/index.php?action=addurl&bm_url='+encodeURIComponent(location.href)+'&bm_notice=&bm_description='+encodeURIComponent(document.title)+'&bm_tags=');return false;" title="Bookmark bei: Mr. Wong" onmouseover="schnapp('wong','','http://www.social-bookmark-script.de/img/bookmarks/wong_trans_ani.gif',1)" onmouseout="schnipp()" > <img style="padding-bottom:1px;" src="http://www.social-bookmark-script.de/img/bookmarks/wong_trans.gif" alt="Bookmark bei: Mr. Wong" name="wong" border="0" id="wong"> </a>
<a rel="nofollow" style="text-decoration:none;" href="http://www.webnews.de/" onclick="window.open('http://www.webnews.de/einstellen?url='+encodeURIComponent(document.location)+'&title='+encodeURIComponent(document.title));return false;" title="Bookmark bei: Webnews" onmouseover="schnapp('Webnews','','http://www.social-bookmark-script.de/img/bookmarks/webnews_trans_ani.gif',1)" onmouseout="schnipp()" > <img style="padding-bottom:1px;" src="http://www.social-bookmark-script.de/img/bookmarks/webnews_trans.gif" alt="Bookmark bei: Webnews" name="Webnews" border="0" id="Webnews"> </a>
<a rel="nofollow" style="text-decoration:none;" href="http://www.icio.de/" onclick="window.open('http://www.icio.de/add.php?url='+encodeURIComponent(location.href));return false;" title="Bookmark bei: Icio" onmouseover="schnapp('Icio','','http://www.social-bookmark-script.de/img/bookmarks/icio_trans_ani.gif',1)" onmouseout="schnipp()" > <img style="padding-bottom:1px;" src="http://www.social-bookmark-script.de/img/bookmarks/icio_trans.gif" alt="Bookmark bei: Icio" name="Icio" border="0" id="Icio"> </a>
<a rel="nofollow" style="text-decoration:none;" href="http://www.oneview.de/" onclick="window.open('http://www.oneview.de/quickadd/neu/addBookmark.jsf?URL='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title));return false;" title="Bookmark bei: Oneview" onmouseover="schnapp('Oneview','','http://www.social-bookmark-script.de/img/bookmarks/oneview_trans_ani.gif',1)" onmouseout="schnipp()" > <img style="padding-bottom:1px;" src="http://www.social-bookmark-script.de/img/bookmarks/oneview_trans.gif" alt="Bookmark bei: Oneview" name="Oneview" border="0" id="Oneview"> </a>
<a rel="nofollow" style="text-decoration:none;" href="http://www.linkarena.com/" onclick="window.open('http://linkarena.com/bookmarks/addlink/?url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)+'&desc=&tags=');return false;" title="Bookmark bei: Linkarena" onmouseover="schnapp('Linkarena','','http://www.social-bookmark-script.de/img/bookmarks/linkarena_trans_ani.gif',1)" onmouseout="schnipp()" > <img style="padding-bottom:1px;" src="http://www.social-bookmark-script.de/img/bookmarks/linkarena_trans.gif" alt="Bookmark bei: Linkarena" name="Linkarena" border="0" id="Linkarena"> </a>
<a rel="nofollow" style="text-decoration:none;" href="http://www.favoriten.de/" onclick="window.open('http://www.favoriten.de/url-hinzufuegen.html?bm_url='+encodeURIComponent(location.href)+'&bm_title='+encodeURIComponent(document.title));return false;" title="Bookmark bei: Favoriten" onmouseover="schnapp('Favoriten','','http://www.social-bookmark-script.de/img/bookmarks/favoriten_trans_ani.gif',1)" onmouseout="schnipp()" > <img style="padding-bottom:1px;" src="http://www.social-bookmark-script.de/img/bookmarks/favoriten_trans.gif" alt="Bookmark bei: Favoriten" name="Favoriten" border="0" id="Favoriten"> </a>
<a rel="nofollow" style="text-decoration:none;" href="http://social-bookmarking.seekxl.de/" onclick="window.open('http://social-bookmarking.seekxl.de/?add_url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title));return false;" title="Bookmark bei: Seekxl" onmouseover="schnapp('Seekxl','','http://www.social-bookmark-script.de/img/bookmarks/seekxl_trans_ani.gif',1)" onmouseout="schnipp()" > <img style="padding-bottom:1px;" src="http://www.social-bookmark-script.de/img/bookmarks/seekxl_trans.gif" alt="Bookmark bei: Seekxl" name="Seekxl" border="0" id="Seekxl"> </a>
<a style="text-decoration:none;" href="http://www.favit.de/" onclick="window.open('http://www.favit.de/submit.php?url='+(document.location.href));return false;" title="Bookmark bei: Favit" onmouseover="schnapp('Favit','','http://www.social-bookmark-script.de/img/bookmarks/favit_trans_ani.gif',1)" onmouseout="schnipp()" > <img style="padding-bottom:1px;" src="http://www.social-bookmark-script.de/img/bookmarks/favit_trans.gif" alt="Bookmark bei: Favit" name="Favit" border="0" id="Favit"> </a>
<a rel="nofollow" style="text-decoration:none;" href="http://www.linksilo.de" onclick="window.open('http://www.linksilo.de/index.php?area=bookmarks&func=bookmark_new&addurl='+encodeURIComponent(location.href)+'&addtitle='+encodeURIComponent(document.title));return false;" title="Bookmark bei: Linksilo" onmouseover="schnapp('Linksilo','','http://www.social-bookmark-script.de/img/bookmarks/linksilo_trans_ani.gif',1)" onmouseout="schnipp()" > <img style="padding-bottom:1px;" src="http://www.social-bookmark-script.de/img/bookmarks/linksilo_trans.gif" alt="Bookmark bei: Linksilo" name="Linksilo" border="0" id="Linksilo"></a>
<a rel="nofollow" style="text-decoration:none;" href="http://www.readster.de/" onclick="window.open('http://www.readster.de/submit/?url='+encodeURIComponent(document.location)+'&title='+encodeURIComponent(document.title));return false;" title="Bookmark bei: Readster" onmouseover="schnapp('Readster','','http://www.social-bookmark-script.de/img/bookmarks/readster_trans_ani.gif',1)" onmouseout="schnipp()" > <img style="padding-bottom:1px;" src="http://www.social-bookmark-script.de/img/bookmarks/readster_trans.gif" alt="Bookmark bei: Readster" name="Readster" border="0" id="Readster"></a>
<a rel="nofollow" style="text-decoration:none;" href="http://www.folkd.com/" onclick="window.open('http://www.folkd.com/submit/'+(dokument.location.href));return false;" title="Bookmark bei: Folkd" onmouseover="schnapp('Folkd','','http://www.social-bookmark-script.de/img/bookmarks/folkd_trans_ani.gif',1)" onmouseout="schnipp()" > <img style="padding-bottom:1px;" src="http://www.social-bookmark-script.de/img/bookmarks/folkd_trans.gif" alt="Bookmark bei: Folkd" name="Folkd" border="0" id="Folkd"> </a>
<a rel="nofollow" style="text-decoration:none;" href="http://yigg.de/" onclick="window.open('http://yigg.de/neu?exturl='+encodeURIComponent(location.href));return false" title="Bookmark bei: Yigg" onmouseover="schnapp('Yigg','','http://www.social-bookmark-script.de/img/bookmarks/yigg_trans_ani.gif',1)" onmouseout="schnipp()" > <img style="padding-bottom:1px;" src="http://www.social-bookmark-script.de/img/bookmarks/yigg_trans.gif" alt="Bookmark bei: Yigg" name="Yigg" border="0" id="Yigg"> </a>
<a rel="nofollow" style="text-decoration:none;" href="http://digg.com/" onclick="window.open('http://digg.com/submit?phase=2&url='+encodeURIComponent(location.href)+'&bodytext=&tags=&title='+encodeURIComponent(document.title));return false;" title="Bookmark bei: Digg" onmouseover="schnapp('Digg','','http://www.social-bookmark-script.de/img/bookmarks/digg_trans_ani.gif',1)" onmouseout="schnipp()" > <img style="padding-bottom:1px;" src="http://www.social-bookmark-script.de/img/bookmarks/digg_trans.gif" alt="Bookmark bei: Digg" name="Digg" border="0" id="Digg"> </a>
<a rel="nofollow" style="text-decoration:none;" href="http://del.icio.us/" onclick="window.open('http://del.icio.us/post?v=2&url='+encodeURIComponent(location.href)+'&notes=&tags=&title='+encodeURIComponent(document.title));return false;" title="Bookmark bei: Del.icio.us" onmouseover="schnapp('Delicious','','http://www.social-bookmark-script.de/img/bookmarks/del_trans_ani.gif',1)" onmouseout="schnipp()" > <img style="padding-bottom:1px;" src="http://www.social-bookmark-script.de/img/bookmarks/del_trans.gif" alt="Bookmark bei: Del.icio.us" name="Delicious" border="0" id="Delicious"> </a>
<a rel="nofollow" style="text-decoration:none;" href="http://www.facebook.com/" onclick="window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(location.href)+'&t='+encodeURIComponent(document.title));return false;" title="Bookmark bei: Facebook" onmouseover="schnapp('Facebook','','http://www.social-bookmark-script.de/img/bookmarks/facebook_trans_ani.gif',1)" onmouseout="schnipp()" > <img style="padding-bottom:1px;" src="http://www.social-bookmark-script.de/img/bookmarks/facebook_trans.gif" alt="Bookmark bei: Facebook" name="Facebook" border="0" id="Facebook"> </a>
<a rel="nofollow" style="text-decoration:none;" href="http://reddit.com/" onclick="window.open('http://reddit.com/submit?url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title));return false;" title="Bookmark bei: Reddit" onmouseover="schnapp('Reddit','','http://www.social-bookmark-script.de/img/bookmarks/reddit_trans_ani.gif',1)" onmouseout="schnipp()" > <img style="padding-bottom:1px;" src="http://www.social-bookmark-script.de/img/bookmarks/reddit_trans.gif" alt="Bookmark bei: Reddit" name="Reddit" border="0" id="Reddit"> </a>
<a rel="nofollow" style="text-decoration:none;" href="http://slashdot.org/" onclick="window.open('http://slashdot.org/bookmark.pl?url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title));return false;" title="Bookmark bei: Slashdot" onmouseover="schnapp('Slashdot','','http://www.social-bookmark-script.de/img/bookmarks/slashdot_trans_ani.gif',1)" onmouseout="schnipp()" > <img style="padding-bottom:1px;" src="http://www.social-bookmark-script.de/img/bookmarks/slashdot_trans.gif" alt="Bookmark bei: Slashdot" name="Slashdot" border="0" id="Slashdot"> </a>
<a rel="nofollow" style="text-decoration:none;" href="http://www.furl.net/" onclick="window.open('http://www.furl.net/storeIt.jsp?u='+encodeURIComponent(location.href)+'&keywords=&t='+encodeURIComponent(document.title));return false;" title="Bookmark bei: Furl" onmouseover="schnapp('Furl','','http://www.social-bookmark-script.de/img/bookmarks/furl_trans_ani.gif',1)" onmouseout="schnipp()" > <img style="padding-bottom:1px;" src="http://www.social-bookmark-script.de/img/bookmarks/furl_trans.gif" alt="Bookmark bei: Furl" name="Furl" border="0" id="Furl"> </a>
<a rel="nofollow" style="text-decoration:none;" href="http://www.blinklist.com/" onclick="window.open('http://www.blinklist.com/index.php?Action=Blink/addblink.php&Description=&Tag=&Url='+encodeURIComponent(location.href)+'&Title='+encodeURIComponent(document.title));return false;" title="Bookmark bei: Blinklist" onmouseover="schnapp('Blinklist','','http://www.social-bookmark-script.de/img/bookmarks/blinklist_trans_ani.gif',1)" onmouseout="schnipp()" > <img style="padding-bottom:1px;" src="http://www.social-bookmark-script.de/img/bookmarks/blinklist_trans.gif" alt="Bookmark bei: Blinklist" name="Blinklist" border="0" id="Blinklist"> </a>
<a rel="nofollow" style="text-decoration:none;" href="http://www.technorati.com/" onclick="window.open('http://technorati.com/faves?add='+encodeURIComponent(location.href)+'&tag=');return false;" title="Bookmark bei: Technorati" onmouseover="schnapp('Technorati','','http://www.social-bookmark-script.de/img/bookmarks/technorati_trans_ani.gif',1)" onmouseout="schnipp()" > <img style="padding-bottom:1px;" src="http://www.social-bookmark-script.de/img/bookmarks/technorati_trans.gif" alt="Bookmark bei: Technorati" name="Technorati" border="0" id="Technorati"> </a>
<a rel="nofollow" style="text-decoration:none;" href="http://www.newsvine.com/" onclick="window.open('http://www.newsvine.com/_wine/save?popoff=1&u='+encodeURIComponent(location.href)+'&tags=&blurb='+encodeURIComponent(document.title));return false;" title="Bookmark bei: Newsvine" onmouseover="schnapp('Newsvine','','http://www.social-bookmark-script.de/img/bookmarks/newsvine_trans_ani.gif',1)" onmouseout="schnipp()" > <img style="padding-bottom:1px;" src="http://www.social-bookmark-script.de/img/bookmarks/newsvine_trans.gif" alt="Bookmark bei: Newsvine" name="Newsvine" border="0" id="Newsvine"> </a>
</fieldset>
</div>
<!-- Ende Social Bookmark -->
<!-- Anfang Werbung Kurzrechner -->
<div id="adright">
<fieldset>
<legend>Verbraucherinformation</legend>
<a href="http://www.domainsliste.de" target="_blank"><img src="http://www.domainsliste.de/images/banner1.gif" width="290"height="50" border="0" alt=""></a>
</fieldset>
<!-- Beginn Code Partner -->
<fieldset>
<legend>Partnerprogramm</legend>
<a href="http://ads.wechseln.de/misc/click.php?pid=59151&aid=51&target_url=http%3A%2F%2Fwww.strompartnerprogramm.de%2F%3Fpid%3D51473" target="_blank">
<img src="http://ads.wechseln.de/misc/view.php?pid=59151&aid=51" border=0>
</a>
<script type="text/javascript"><!--
google_ad_client = "pub-3674009565933217";
/* 250x250, Erstellt 27.08.09 */
google_ad_slot = "4746070799";
google_ad_width = 250;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<script type="text/javascript"><!--
google_ad_client = "pub-3674009565933217";
/* 250x250, Erstellt 27.08.09 */
google_ad_slot = "4746070799";
google_ad_width = 250;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</fieldset>
</div>
<!-- Ende Werbung Kurzrechner -->
<!-- Endtag Sidebar -->
</div>
<div></div>
</div>
<div></div>
<div id="footer">
<div id="footer_logo"></div>
<p id="footer_copyright">Copyright © 2008 gas-strom-vergleiche.de - Alle Angaben ohne Gewähr.</p>
<p id="footer_info"><a href="index.php">Startseite</a> | <a href="strompreisvergleich.php">Strompreisvergleich</a> | <a href="gaspreisvergleich.php">Gaspreisvergleich</a> | <a href="verbraucherinformation.php">Verbraucherinformation</a> | <a href="spartipps.php">Spartipps</a> | <a href="impressum.php" rel="nofollow">Impressum</a></p>
</div>
</div>
</body>
</html>