Hi,
...
"text1.htm" soll nun seinerseits beim laden überprüfen, ob das zugehörige logo im logoframe steht, und wenn nicht soll jenes aufgerufen werden:...
Hast Du es statt mit document.URL mal mit location.href versucht?
Also:
if (parent.text.location.href != "www.bla.com/logo1.htm"){
parent.text.location.href = "www.bla.com/logo1.htm";
}
oder auch
if (parent.text.location.href.substr(parent.text.location.href.length-10, parent.text.location.href.length)
{parent.frames.text.document.location.href = "logo1.htm"}
Gruss, Mel