Resume - Top Frame Source Code

<SCRIPT>

var link = new Array();
link[0] = "pers.htm";
link[1] = "tech.htm";
link[2] = "exp.htm";
link[3] = "more.htm";

function subject(index){
     top.frames[1].location.
href = link[index];
}

</SCRIPT>

<FORM>
     <
SELECT onChange="subject(this.selectedIndex);">
          <
OPTION SELECTED>Personal information </OPTION>
          <
OPTION>Technical summary </OPTION>
          <
OPTION>Professional experience </OPTION>
          <
OPTION>More info </OPTION>
     </
SELECT>
</
FORM>