function open_new_window() 
{
new_window = open("","displayWindow","width=350,height=250,left=10,top=10");

// open new document 
new_window.document.open();

// Text of the new document
// Replace your " with ' or \" or your document.write statements will fail
new_window.document.write("<html><head><title>eLink reminder</title></head>");
new_window.document.write("<body>");
new_window.document.write("<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tr bgcolor=\"#000000\"><TD><img src=\"http://www.coop.eng.umd.edu/images/blank.gif\" height=\"1\"></TD></tr><TR bgcolor=\"#eeeeee\"><TD><B>Remember that:</B></td></tr><tr bgcolor=\"#000000\"><TD><img src=\"http://www.coop.eng.umd.edu/images/blank.gif\" height=\"1\"></TD></tr></table><P>");
new_window.document.write("USERNAME = your SID or UID<BR>(e.g. 123456789)<P>");
new_window.document.write("PASSWORD = your Birthdate<BR>(e.g. 02/04/84 for a birthday of Feb. 4, 1984)<P>");
new_window.document.write("<img src=\"http://www.coop.eng.umd.edu/images/squares.gif\">");
new_window.document.write("<a href=\"http://umdengcoop.erecruiting.com/er/security/password_reminder.jsp\" target=\"_blank\" onClick=\"javascript:setTimeout(window.close, 100);\">I still can't login.</a><br>");
new_window.document.write("<img src=\"http://www.coop.eng.umd.edu/images/squares.gif\">");
new_window.document.write("<a href=\"\" onClick=\"javascript:window.close();\">Close window</a>");
new_window.document.write("</body></html>");
}