che differenza c'è tra:
codice:
<script>
if(top != self) 
	top.location.replace(document.URL.substring("http://".length + document.domain.length));
</script>
e
codice:
<script>
if(top != self) 
	top.location.href.replace(document.URL.substring("http://".length + document.domain.length));
</script>
top.location*** funziona, top.location.href***, no :master:

grazie