<!--
function name_popup()
{
  name_window = window.open("", "name_window", "status=0, location=0, toolbar=0, menubar=0, height=100, width=500");
  name_window.document.write("<center>");
  name_window.document.write("(If enrolled already, please provide name used to enroll)<br>");
  name_window.document.write("<a href='javascript: self.close()'>Close this Window</a>");
}

function app_id_popup()
{
  id_window = window.open("", "id_window", "status=0, location=0, toolbar=0, menubar=0, height=100, width=500");
  id_window.document.write("<center>");
  id_window.document.write("(If enrolled already, please provide App ID provided at Enrollment)<br>");
  id_window.document.write("<a href='javascript: self.close()'>Close this Window</a>");
}

function enrollment_popup()
{
  enrollment_window = window.open("", "enrollment_window", "status=0, location=0, toolbar=0, menubar=0, height=100, width=500");
  enrollment_window.document.write("<center>");
  enrollment_window.document.write("(If enrolled already, please provide Enrollment Center used for enrollment)<br>");
  enrollment_window.document.write("<a href='javascript: self.close()'>Close this Window</a>");
}
//-->