/***************************************************************
* iViewAnywhere Application Library
* (c) copyright 2005-2008 Fushia Corp. All rights reserved
****************************************************************/


isOpen= false;
aWindow=null

function resetpwd() {
     if ( isOpen==true && aWindow!=null ) {
      	aWindow.close();
      }
      isOpen = true;
      aWindow = window.open("","",'width=350,height=400,directories=no,location=no,menubar=no, scrollbars=yes,status=no,toolbar=no,resizable=no'); 
      aWindow.document.write("<html>");
      aWindow.document.write("<title>Reset Password</title>");
      aWindow.document.write("<head>");
      aWindow.document.write("<link href='/ivaw/css/style.css' rel='stylesheet' type='text/css' />");
      aWindow.document.write("</head>"); 

      aWindow.document.write("<div id='main-inner-forgotpwd'>");
 
      aWindow.document.write("<form id='form2' name='form2' method='post' action='/forgotpwd'>");
      aWindow.document.write("<br>");
      aWindow.document.write("<p> <font color = '#003366' size = 3pt><b> Verify User Identity Information </b></p>");

      aWindow.document.write("<font color = '#FF6600' size = 2pt>");
      aWindow.document.write("<label><b>Email:</b><br />");
      aWindow.document.write("<input name='email' type='text' id='email' size='30' />");
      aWindow.document.write("</label><br/>");
      aWindow.document.write("<br>");

      aWindow.document.write("<font color = '#FF6600' size = 2pt>");
      aWindow.document.write("<label><b>Zip or Postal Code:</b><br />");
      aWindow.document.write("<input name='zip' type='text' id='zip' size='30'/>");
      aWindow.document.write("</label><br/>");
      aWindow.document.write("<br>");

      aWindow.document.write("<font color = '#FF6600' size = 2pt>");
      aWindow.document.write("<label><b>Question:</b></>");
      aWindow.document.write("<select name='question'>");
      aWindow.document.write("<OPTION value='What was the color of your first car?' SELECTED>What was the color of your first car?");
      aWindow.document.write("<OPTION value='What is the name of your pet?' >What is the name of your pet?");
      aWindow.document.write("<OPTION value='What is the name of your favorite restaurant?' >What is the name of your favorite restaurant?");
      aWindow.document.write("<OPTION value='What is your favorite song?' >What is your favorite song?");
      aWindow.document.write("<OPTION value='What is the name of your favorite pop singer?'>What is the name of your favorite pop singer?");
      aWindow.document.write("<OPTION value='What is the name of your favorite movie star?' >What is the name of your favorite movie star?");
      aWindow.document.write("<OPTION value='What is your favorite sport?' >What is your favorite sport?");
      aWindow.document.write("</select>");
      aWindow.document.write("<p />");



      aWindow.document.write("<font color = '#FF6600' size = 2pt>");
      aWindow.document.write("<label><b>Answer:</b><br/>");
      aWindow.document.write("<input name='answer' type='text' id='answer' size='30' />");
      aWindow.document.write("</label><br>");
      aWindow.document.write("<br>");


      aWindow.document.write("<div id='forgotpwd_submit'><input type='submit' name='Submit' value='Submit' /></div>");
      

      aWindow.document.write("</form>");

      aWindow.document.write("</div>");

     aWindow.document.write("<html>");
 
   }
