cyrusmendi: 3Frames Laden

Beitrag lesen

Hey habe folgendes Problem: Ich will 3 frames auf einmal laden lassen (sind iframes, aber ist egal... geht mit 2en auch).

folgendes hab ich mir ausgedacht:
im java:

function about(URI1,F1,URI2,F2,URI3,F3) {
  Frame1=eval(F1);
  Frame2=eval(F2);
  Frame3=eval(F3);
  Frame1.location.href = URI1;
  Frame2.location.href = URI2;
  Frame3.location.href = URI3;
}

im html:

<a href="Javascript:about('html/about/about.htm','iframemenue','blank1.htm','iframem1','blank2.htm','iframem2')">about</a>

leider gehts nicht. Hat jemand ne Idee???

MFG André