link does not load and application is restarted

link does not load and application is restarted

Hi all! I am trying to develop an application for data collection for a master thesis. I have a form where people have to encode some words according to a rule in a certain amount of time. After they submit their answer they press Finish and should get to a form that would show them their score.
I built an HTML view that loads 2 Zoho forms, one with the encoding algorithm and one with the exercises. Since I couldn't built a timer in Zoho, I had one built and stored at a certain web address. All Zoho has to do is load the link in the HTML view. However, it doesn't do that for all browsers. I works in Internet Explorer but not in Chrome. Any idea why?
 
Also, when people press the Finish button they get to the next form in Chrome but in Internet Explorer the application simply restarts by itself. Could you please give me a solution or idea why?
 
I wrote the code below:
 
htmlpage Steven_First_task_with_timer()
displayname = "Steven-First task with timer"
content
<%{%>
<form action="https://creator.zoho.com/andreea.vasilachi/experiment-master-thesis/#form:Performance1">
  <input type="submit" value="FINISH TASK" style="color:Black;top:300px;Margin-left:400px;"  >
</form>
  <iframe name="zohoview" src='http://ceata.org/~tct/resurse/countdown/timer.html'height='80' width='100px' frameborder='0' scrolling='No'align=left style="position:fixed; top:10px; margin-left:400px;"></iframe>
   <iframe name="frameName2"src="https://creator.zoho.com/andreea.vasilachi/experiment-master-thesis/form-perma/FirsttaskSteven" width="400" height="2000" scrolling='Yes' frameborder='0'align=left style="top:200px; margin-left:0px;"></iframe>
  <iframe name="frameName1" src="https://creator.zoho.com/andreea.vasilachi/experiment-master-thesis/form-perma/Steven_header" width="850" height="300" scrolling='No' frameborder='0'align=center ></iframe>
   <BR>&nbsp;<BR>
<BR>&nbsp;<BR>
 











  <%}%>