Quote:
|
Originally Posted by jestep
How many links do you have coming into each page? If you dont have very many or any at all I would guess that the page fell out of the index due to no links coming into it,
|
I have quite a few links coming to it, what I don't understand is that how come it was well rated a week ago and now nothing, it could be something to do with the double page.
There is couple of JS which I havent write and they appear in the page I wonder where they come from and who ad them there? It goes like that:
<script language="JavaScript">
<!--
function SymError()
{
return true;
}
window.onerror = SymError;
var SymRealWinOpen = window.open;
function SymWinOpen(url, name, attributes)
{
return (new Object());
}
window.open = SymWinOpen;
//-->
</script>
and at the end of the source page AFTER /HTML
again an other one:
<script language="JavaScript">
<!--
var SymRealOnLoad;
var SymRealOnUnload;
function SymOnUnload()
{
window.open = SymWinOpen;
if(SymRealOnUnload != null)
SymRealOnUnload();
}
function SymOnLoad()
{
if(SymRealOnLoad != null)
SymRealOnLoad();
window.open = SymRealWinOpen;
SymRealOnUnload = window.onunload;
window.onunload = SymOnUnload;
}
SymRealOnLoad = window.onload;
window.onload = SymOnLoad;
//-->
</script>
WHERE THE HELL IS COMING FROM AND WHAT DOES IT DO??????