I just turned off the javascript I wrote on that page and the page loaded fine. It appears it is a problem with the script I wrote. Can you take a look and let me know what I am doing to cause the problem? Here is the script...
var input = Appery('mobiletextinput_30').val();
var input2 = Appery('mobiletextinput_29').val();
var inputunit = Appery('mobileselectmenu_26').val();
var diameter = input*inputunit;
// Now we have the diameter in feet, and the frequency in GHz
var lambda = 0.3/input2;
// Calculate the record increment
var ri = 180/(((3.1416*diameter)/lambda)+10);
// Calculate the number of points
var points=64800/(ri*ri);
alert ("Number of Grid Points on Full Sphere is" + points + '"\n Record Increment is" +ri)