Getting Started:
Fill out the information required in the Registration below, and
follow the guidance given in the response to the Registration request
AnalyzeReactors Platform Access Request
Company
About Us
Backgroung
Legals
Copyright
Terms of Use
Terms of Purchase
interpreter = "0.23.4"
import js
def signupFillCheck():
status = True
statusStr = ""
#js.alert("status string is " + statusStr);
DocForm = js.document.getElementById("AccessRequestFrm")
def ReqDataCheck(postForm):
instatus = True;
instatusStr = str("");
if len(postForm.name.value) <= 0:
instatusStr = instatusStr + str(" \nUser Name");
if len(postForm.email.value) <= 0:
instatusStr += str(" \nEmail Address");
if len(instatusStr) > 0:
instatus = False;
instatusStr = "Please provide the following listed data
" + str(instatusStr) + "
that we may render effective service"
if len(postForm.name.value) > 0:
nameStr = postForm.name.value
js.alert("nameStr string is " + nameStr);
nameunits = nameStr.split(" ");
js.alert("nameunits[0] string is " + str(nameunits[0]));
if len(nameunits) <= 1:
instatus = False;
instatusStr = "Use proper name and email-address, Thank you"
statusStr = instatusStr;
return [instatus, statusStr];
retvals = []
retvals = ReqDataCheck(DocForm);
status = retvals[0]
statusStr = retvals[1]
#alert("status is " + status);
if (status):
DocForm.submit();
else:
js.alert("Please provide the following listed data \n" + str(statusStr) + " \n that we may render effective service");
return True