hmm. let's try something else..
find the following:
PHP Code:
<body><!-- google_ad_section_start(weight=ignore) -->
<table width="100%" align="center">
<tr>
<td><a href="/lang/en<?php echo $_SERVER["REQUEST_URI"]?><img src="/translate/graphics/us.gif"
alt="English"></a> </td>
<td><a href="/lang/de<?php echo $_SERVER["REQUEST_URI"]?><img src="/translate/graphics/de.gif" alt="German"></a>
</td>
<td><a href="/lang/es<?php echo $_SERVER["REQUEST_URI"]?><img src="/translate/graphics/es.gif"
alt="Spanish"></a> </td>
<td><a href="/lang/fr<?php echo $_SERVER["REQUEST_URI"]?><img src="/translate/graphics/fr.gif" alt="French"></a>
</td>
<td><a href="/lang/it<?php echo $_SERVER["REQUEST_URI"]?><img src="/translate/graphics/it.gif"
alt="Italian"></a> </td>
<td><a href="/lang/pt<?php echo $_SERVER["REQUEST_URI"]?><img src="/translate/graphics/pt.gif"
alt="Portuguese"></a> </td>
<td><a href="/lang/ru<?php echo $_SERVER["REQUEST_URI"]?><img src="/translate/graphics/ru.gif"
alt="Russian"></a> </td>
</tr>
</table>
<!-- google_ad_section_end -->Have you ever dreamed of investing in properties around the world, which
are still in development and low in price?
{include file="header.tpl"}
replace with:
PHP Code:
<body>
{include file="flags.php"}
{include file="header.tpl"}
now create a new file named
flags.php and place it in the same directory as
header.tpl
add the following code to the file:
PHP Code:
<!-- google_ad_section_start(weight=ignore) -->
<table width="100%" align="center">
<tr>
<td><a href="/lang/en<?php echo $_SERVER["REQUEST_URI"]?><img src="/translate/graphics/us.gif"
alt="English"></a> </td>
<td><a href="/lang/de<?php echo $_SERVER["REQUEST_URI"]?><img src="/translate/graphics/de.gif" alt="German"></a>
</td>
<td><a href="/lang/es<?php echo $_SERVER["REQUEST_URI"]?><img src="/translate/graphics/es.gif"
alt="Spanish"></a> </td>
<td><a href="/lang/fr<?php echo $_SERVER["REQUEST_URI"]?><img src="/translate/graphics/fr.gif" alt="French"></a>
</td>
<td><a href="/lang/it<?php echo $_SERVER["REQUEST_URI"]?><img src="/translate/graphics/it.gif"
alt="Italian"></a> </td>
<td><a href="/lang/pt<?php echo $_SERVER["REQUEST_URI"]?><img src="/translate/graphics/pt.gif"
alt="Portuguese"></a> </td>
<td><a href="/lang/ru<?php echo $_SERVER["REQUEST_URI"]?><img src="/translate/graphics/ru.gif"
alt="Russian"></a> </td>
</tr>
</table>
<!-- google_ad_section_end -->Have you ever dreamed of investing in properties around the world, which
are still in development and low in price?
logically it should fix the problem. give it a try and let me know happens!