/* FILE ARCHIVED ON 7:22:51 Sep 16, 2008 AND RETRIEVED FROM THE AN OPENWAYBACK INSTANCE ON 8:12:58 Jun 15, 2024. JAVASCRIPT APPENDED BY OPENWAYBACK, COPYRIGHT INTERNET ARCHIVE. ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C. SECTION 108(a)(3)). */ // convert all characters to lowercase to simplify testing var agt=navigator.userAgent.toLowerCase(); var app=navigator.appName.toLowerCase(); // Set global browser stuff variables. var is_major = parseInt(navigator.appVersion); var is_nav = (agt.indexOf('mozilla') != -1); var is_ie = (agt.indexOf("msie") != -1); var is_ie4up = (is_ie && (is_major >= 4)); var is_nav4up = (is_nav && (is_major >= 4)); // Set global browser specific styles. if (is_ie && is_ie4up) { document.write(""); } else { if (is_nav && is_nav4up) { document.write(''); } else { document.write(""); } } function SearchBox() { if ((app.indexOf('netscape') != -1)) { document.write('') } else { document.write('') } document.seek1.qt.focus(); } function closeWindow() { window.close(); } //--> function generatePassword(f) { sarr = new Array("abcdefghijkmnopqrstuvwxyz", "23456789", "~!@#$%^&*()_+-=\[]{};:,./<>?"); s = new String(); pw = new String(); s = sarr[0] + sarr[1]; if (s.length < 1) { alert('You must give us something to generate the password from.'); return(false); } for (i = 0; i < 5; i++) { pw += s.charAt(Math.floor(Math.random()*s.length)); } f.pw.value = pw; f.frmunique_id.value = pw; }