// Help file for members area
 
 function help(item) {
 	switch (item) {
		case "password":
			title = "Save Password";
			desc  = "<p>Checking this box will allow you to visit member-restricted areas of the web site without having to repeatedly login.</p> ";
			desc += "<p>You must allow a cookie to be placed on ";
			desc += "your computer to enable this option.</p>";
			break;
	}
	writeWindow(title,desc);
 }
 
 function writeWindow(title,desc) {
 	msgWindow = window.open("","helpWindow","scrollbars=yes,status=yes,width=225,height=250");
	msgWindow.document.write("<head><title>" + title + "</title></head>");
	msgWindow.document.write("<body>");
	msgWindow.document.write("<div style='font-family: verdana, arial, helvetica, sans-serif; font-size: .8em;'>" + desc);
	msgWindow.document.write("</div>");
	msgWindow.document.write("<div style='font-family: verdana, arial, helvetica, sans-serif; font-size: .9em; text-align: right;'>");
	msgWindow.document.write("<a href='javascript:self.close()' title='Close the Window'>Close Window</a></div>");
	msgWindow.document.write("</body>");
 }