// --- Description files - opens new window and writes to it depending on selection.
descriptionOpen="<html><head><title>Feature Description</title><link rel='STYLESHEET' type='text/css' href='../include/template.css'></head><body marginwidth=2 marginheight=2 topmargin=2 leftmargin=2><table cellspacing=2 cellpadding=2 border=0 class=contenttext2>";
descriptionClose="<tr><td align=center valign=bottom><br /><a href='javascript:window.close();' class='descriptionlink'>close window</a></td></tr></table></body></html>";

description=new Array()
description[0]="<tr><td><b>Security Suite</b></td></tr><tr><td>Increased security software provides Advanced Firewall, Virus Protection, Spyware and Pop-Up Blockers.</td></tr>"
description[1]="<tr><td><b>Spam Filtering</b></td></tr><tr><td>Spam blockers filter undesirable emails and place them into a Gray Mail folder.</td></tr>"
description[2]="<tr><td><b>Web Content Filtering</b></td></tr><tr><td>Filters out and restricts the viewing of websites based on criteria you specify. For example, websites containing any information about alcohol, drugs or gambling could be blocked.</td></tr>"
description[3]="<tr><td><b>Parental Controls</b></td></tr><tr><td>Improved tools increase the security of your child's online experience, allowing you to set time limitations and permissions for access.</td></tr>"
description[4]="<tr><td><b>Tattle Mail</b></td></tr><tr><td>Alerts the primary account if a restricted user attempts to open filtered spam messages, which can cause viruses.</td></tr>"
description[5]="<tr><td><b>Web Racer Accelerator</b></td></tr><tr><td>Allows you to enjoy faster Internet speeds with less time waiting for large files to download - a common need for online gamers.</td></tr>" 
description[6]="<tr><td><b>Roaming Road Warrior</b></td></tr><tr><td>Allows you to log in from almost anywhere for fast and easy remote access. This feature also provides a nationwide network of local numbers to dial into so you are not charged for a long distance number.</td></tr>"
description[7]="<tr><td><b>Webmail Access</b></td></tr><tr><td>Allows you to check your email from any computer anywhere. All you need is an Internet connection.</td></tr>"
description[8]="<tr><td><b>Video Mail</b></td></tr><tr><td>Records and sends video email messages, extending the limits of your hard drive.</td></tr>"

function newDescriptionWindow(num) {
OpenWin = this.open("description.html", "HelpWindow", "toolbar=no,menubar=no,location=no,scrollbars=auto,resizable=no,width=250,height=200");
newdocument=OpenWin.document;
newdocument.write(descriptionOpen + description[num] + descriptionClose);
newdocument.close();
window['OpenWin'].focus();
}
// --- End help files
