//
// Creates the form and the login and password 
// space for login into the website
// done by calling <script type="text/javascript" src="scripts/login.js"></script>
//
document.write("<form action=\"http://vision.insuroratlas.com/default.aspx\" method=\"post\" name=\"first\">");
document.write("	<input name=\"username\" size=\"15\" maxlength=\"25\" value=\"Username\" onFocus=\"Javascript: if(this.value == 'Username'){this.value='';}\" onBlur=\"Javascript: if(this.value == ''){this.value='Username';}\" />&nbsp;");
document.write("	<input type=\"password\" size=\"15\" maxlength=\"25\" name=\"password\"  value=\"Password\" onFocus=\"Javascript: if(this.value == 'Password'){this.value=''; this.type='password'}\" onBlur=\"Javascript: if(this.value == ''){this.value='Password';this.type='text'}\" />");
document.write("	<input type=\"submit\" name=\"login\" value=\"login\" />");
document.write("</form> ");
