Hola, a ver si me podéis echar una mano. No entiendo cómo llama a la página. La página está echa con frames. Os pongo debajo el código de la página que llama a los frames.
Gracias por vuestra ayuda:
* Código del script que no entiendo:
__________
<script>
var und,sto;
onload=function(){sto=setTimeout("control()",1000) ;}
function control(){clearTimeout(sto);if(parent.data==und){v ar d=document.location.href.split("/");var pagina="prods/"+d[d.length-1];top.location.href="../index.html?"+pagina;}else (parent.data.pageReady!=und&&parent.data.pageReady )?sendData():sto=setTimeout("control()",250);}
</script>
__________
* Código dentro de la página de los frames:
__________
<script>
var empiezaen='prods/home.html';
var dc=document.location.href.split("?");
if(dc.length>1)empiezaen=dc[1];
var d=''+
'<frameset cols="780,1,*" border=0 frameborder=0 framespacing=0 noresize>'+
'<frame src="home.html" name="data" frameborder=0 marginheight=0 marginwidth=0 noresize scrolling=no>'+
'<frame src="'+empiezaen+'" name="loader" frameborder=0 marginheight=0 marginwidth=0 noresize scrolling=no>'+
'<frame src="vacio.html" name="right" frameborder=0 marginheight=0 marginwidth=0 noresize scrolling=no>'+
'</frameset>';
document.write(d);
//'<frameset rows="*" border=0 frameborder=0 framespacing=0 noresize>'+
//'<frame src="enlace.jsp" name="enlace" frameborder=0 marginheight=0 marginwidth=0 noresize scrolling=no>'+
//'</frameset>'+
</script>