// ############################## START FUNC ############################################ // This function is in in some respects an ecvivalent to mega0(), but all procedures // are used with the objective to facilitate conversion of singular molecules function start_routine() { parent.right.ute1.location="intervalspec.txt"; parent.right.ute2.location="file_list.txt"; parent.right.ute3.location="feature_list.txt"; window.setTimeout("start_routine_continue();",20); } // ############################### end func ############################################ // ############################## START FUNC ############################################ // This function continue the setup after start_routine. The feature list is fetched // and loaded into the main form text window. function start_routine_continue() { text_read_write=parent.right.ute2.document.all[3].innerHTML; text_read_write=text_read_write.replace("",""); text_read_write=text_read_write.replace("",""); text_read_write=text_read_write.replace("
","");
text_read_write=text_read_write.replace("
",""); document.form1.text1.value=text_read_write; return; } // ############################### end func ############################################