


sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}

function getCalendarDate()
{
   var months = new Array(13);
   months[0]  = "January";
   months[1]  = "February";
   months[2]  = "March";
   months[3]  = "April";
   months[4]  = "May";
   months[5]  = "June";
   months[6]  = "July";
   months[7]  = "August";
   months[8]  = "September";
   months[9]  = "October";
   months[10] = "November";
   months[11] = "December";
   var now         = new Date();
   var monthnumber = now.getMonth();
   var monthname   = months[monthnumber];
   var monthday    = now.getDate();
   var year        = now.getYear();
   if(year < 2000) { year = year + 1900; }
   var dateString = monthname +
                    ' ' +
                    monthday +
                    ', ' +
                    year;
   return dateString;
} // function getCalendarDate()

/*
 * This function will create the right-hand Downloads box and print the product name and current
 * version number. Simply change the string numbers when updating this code. To draw a box with
 * all programs, pass 0 in as the parameter. 1 draws WebDrive, 2 draws Titan, and 3 draws GroupDrive.
 */
function box_nav_downloads(program)
{
        var szGDver = "6.21";
        var szWDver = "9.14";
        var szTNver = "8.20";
		var szDMZver = "3.22";
		var szWDMACver = "2.05";
		var szCSver = "8.20";


        document.writeln("<h3>DOWNLOADS</h3>");
		if (program == 1) /* webdrive */
        {
                document.writeln("<dl>");
                document.writeln("<dt><img src=\"/_images/icon_squareorange.gif\" width=\"22\" height=\"22\" alt=\"\" /></dt>");
                document.writeln("<dd><a href=\"/download/index.html\">WebDrive</a> <div class=\"version\">");
                document.writeln(szWDver);
                document.writeln("</div>");
                document.writeln("</dd>");
                document.writeln("</dl>");
              	document.writeln("<dl>");
                document.writeln("<dt><img src=\"/_images/wd.mac/wd32.png\" width=\"22\" height=\"22\" alt=\"\" /></dt>");
                document.writeln("<dd><a href=\"/download/index.html\">WebDrive for Mac OS X</a> <div class=\"version\">");
                document.writeln(szWDMACver);
                document.writeln("</div>");
                document.writeln("</dd>");
                document.writeln("</dl>");
       }
        else if (program == 2) /* titan */
        {
                document.writeln("<dl>");
                document.writeln("<dt><img src=\"/_images/icon_squareswirl.gif\" width=\"21\" height=\"21\" alt=\"\" /></dt>");
                document.writeln("<dd><a href=\"/download/index.html\">Titan FTP Server</a> <div class=\"version\">");
                document.writeln(szTNver);
                document.writeln("</div>");
                document.writeln("</dd>");
                document.writeln("</dl>");
                
        }
        else if (program == 3) /* groupdrive */
        {
                document.writeln("<dl>");
                document.writeln("<dt><img src=\"/_images/icon_circle.gif\" width=\"22\" height=\"22\" alt=\"\" /></dt>");
                document.writeln("<dd><a href=\"/download/gdindex.html\">GroupDrive File<br />Collaboration Suite</a> <div class=\"version\">");
                document.writeln(szGDver);
                document.writeln("</div>");
                document.writeln("</dd>");
                document.writeln("</dl>");
								
                document.writeln("<dl>");
                document.writeln("<dt><img src=\"/_images/icon_bluebricks.gif\" width=\"21\" height=\"20\" alt=\"\" /></dt>");
                document.writeln("<dd><a href=\"/download/dmzindex.html\">DMZ<font style=\"font-style: italic\">edge</font> Server</a> <div class=\"version\">");
                document.writeln(szDMZver);
                document.writeln("</div>");
                document.writeln("</dd>");
                document.writeln("</dl>");
        }
        else if (program == 4) /* MFT */
        {
         }
        else if (program == 5) /* DMZ */
        {
                document.writeln("<dl>");
                document.writeln("<dt><img src=\"/_images/icon_bluebricks.gif\" width=\"21\" height=\"20\" alt=\"\" /></dt>");
                document.writeln("<dd><a href=\"/download/dmzindex.html\">DMZ<font style=\"font-style: italic\">edge</font> Server</a> <div class=\"version\">");
                document.writeln(szDMZver);
                document.writeln("</div>");
                document.writeln("</dd>");
                document.writeln("</dl>");
				
                document.writeln("<dl>");
                document.writeln("<dt><img src=\"/_images/logos/csicon32.png\" width=\"24\" height=\"24\" alt=\"\" /></dt>");
                document.writeln("<dd><a href=\"/download/csindex.html\">Cornerstone MFT</a> <div class=\"version\">");
                document.writeln(szCSver);
                document.writeln("</div>");
                document.writeln("</dd>");
                document.writeln("</dl>");

                document.writeln("<dl>");
                document.writeln("<dt><img src=\"/_images/icon_circle.gif\" width=\"22\" height=\"22\" alt=\"\" /></dt>");
                document.writeln("<dd><a href=\"/download/gdindex.html\">GroupDrive File<br />Collaboration Suite</a> <div class=\"version\">");
                document.writeln(szGDver);
                document.writeln("</div>");
                document.writeln("</dd>");
                document.writeln("</dl>");
		}
        else if (program == 6) /* WebDrive for Mac */
        {
             	document.writeln("<dl>");
                document.writeln("<dt><img src=\"/_images/wd.mac/wd32.png\" width=\"22\" height=\"22\" alt=\"\" /></dt>");
                document.writeln("<dd><a href=\"http://www.webdrive.com/software/regsoft/webdrive.mac/v2/WebDrive.dmg\">WebDrive for Mac OS X</a> <div class=\"version\">");
                document.writeln(szWDMACver);
                document.writeln("</div>");
                document.writeln("</dd>");
                document.writeln("</dl>");
        }
        else if (program == 10) /* CORNERSTONE MFT */
        {
                document.writeln("<dl>");
                document.writeln("<dt><img src=\"/_images/logos/csicon32.png\" width=\"24\" height=\"24\" alt=\"\" /></dt>");
                document.writeln("<dd><a href=\"/download/csindex.html\">Cornerstone MFT</a> <div class=\"version\">");
                document.writeln(szCSver);
                document.writeln("</div>");
                document.writeln("</dd>");
                document.writeln("</dl>");
								
                document.writeln("<dl>");
                document.writeln("<dt><img src=\"/_images/icon_bluebricks.gif\" width=\"21\" height=\"20\" alt=\"\" /></dt>");
                document.writeln("<dd><a href=\"/download/dmzindex.html\">DMZ<font style=\"font-style: italic\">edge</font> Server</a> <div class=\"version\">");
                document.writeln(szDMZver);
                document.writeln("</div>");
                document.writeln("</dd>");
                document.writeln("</dl>");
        }
        else /* all */
        {
                document.writeln("<dl>");
                document.writeln("<dt><img src=\"/_images/icon_circle.gif\" width=\"22\" height=\"22\" alt=\"\" /></dt>");
                document.writeln("<dd><a href=\"/download/gdindex.html\">GroupDrive File<br />Collaboration Suite</a> <div class=\"version\">");
                document.writeln(szGDver);
                document.writeln("</div>");
                document.writeln("</dd>");
                document.writeln("</dl>");

                document.writeln("<dl>");
                document.writeln("<dt><img src=\"/_images/logos/csicon32.png\" width=\"22\" height=\"22\" alt=\"\" /></dt>");
                document.writeln("<dd><a href=\"/download/csindex.html\">Cornerstone MFT</a> <div class=\"version\">");
                document.writeln(szTNver);
                document.writeln("</div>");
                document.writeln("</dd>");
                document.writeln("</dl>");

                document.writeln("<dl>");
                document.writeln("<dt><img src=\"/_images/icon_squareswirl.gif\" width=\"21\" height=\"21\" alt=\"\" /></dt>");
                document.writeln("<dd><a href=\"/download/index.html\">Titan FTP Server</a> <div class=\"version\">");
                document.writeln(szTNver);
                document.writeln("</div>");
                document.writeln("</dd>");
                document.writeln("</dl>");

                document.writeln("<dl>");
                document.writeln("<dt><img src=\"/_images/icon_squareorange.gif\" width=\"22\" height=\"22\" alt=\"\" /></dt>");
                document.writeln("<dd><a href=\"/download/index.html\">WebDrive</a> <div class=\"version\">");
                document.writeln(szWDver);
                document.writeln("</div>");
                document.writeln("</dd>");
                document.writeln("</dl>");

             	document.writeln("<dl>");
                document.writeln("<dt><img src=\"/_images/wd.mac/wd32.png\" width=\"22\" height=\"22\" alt=\"\" /></dt>");
                document.writeln("<dd><a href=\"/download/index.html\">WebDrive for Mac OS X</a> <div class=\"version\">");
                document.writeln(szWDMACver);
                document.writeln("</div>");
                document.writeln("</dd>");
                document.writeln("</dl>");
								
                document.writeln("<dl>");
                document.writeln("<dt><img src=\"/_images/icon_bluebricks.gif\" width=\"21\" height=\"20\" alt=\"\" /></dt>");
                document.writeln("<dd><a href=\"/download/dmzindex.html\">DMZ<font style=\"font-style: italic\">edge</font> Server</a> <div class=\"version\">");
                document.writeln(szDMZver);
                document.writeln("</div>");
                document.writeln("</dd>");
                document.writeln("</dl>");
        }
}
/*
 * This function will create the right-hand Downloads box and print the product name and current
 * version number. Simply change the string numbers when updating this code. To draw a box with
 * all programs, pass 0 in as the parameter. 1 draws WebDrive, 2 draws Titan, and 3 draws GroupDrive.
 */
function box_nav_resources(program)
{
        if (program == 1) /* webdrive */
        { 
                document.writeln("<ul class=\"midlist\">");
                document.writeln("<li><a href=\"index.html\">Overview</a></li>");
                document.writeln("<li><a href=\"features.html\">Advanced Features</a></li>");
                document.writeln("<li><a href=\"sysreq.html\">System Requirements</a></li>");
                document.writeln("<li><a href=\"update.html\">Updating WebDrive</a></li>");
                document.writeln("<li><a href=\"wdproductdemonstrations.html\">WebDrive Product Demonstrations</a></li>");
                document.writeln("<li><a href=\"/purchase/wdpricing.html\">WebDrive FTP Client Pricing</a></li>");
                document.writeln("<li><a href=\"relnotes.html\" target=\"_blank\"> Release Notes</a></li>");
                document.writeln("<li><a href=\"/support/webdrive/webhelp.v9/webdrive.htm\">WebDrive Online Help</a></li>");
                document.writeln("<li><a href=\"/docs/datasheets/webdrive.pdf\" target=\"_blank\">WebDrive Product Data Sheet</a></li>");
                document.writeln("<li><a href=\"/docs/webdrive/WebDrive_Users_Guide_Master.pdf\" target=\"_blank\">WebDrive User's Guide</a></li>");
				document.writeln("<li><a href=\"/resources/ftpclients.html\">About FTP Clients</a></li>");
                document.writeln("</ul>");
        }
        else if (program == 2) /* titan */
        { 
                document.writeln("<ul class=\"midlist\">");
		        document.writeln("<li><a href=\"index.html\">Overview</a></li>");
                document.writeln("<li><a href=\"features.html\">Features</a></li>");
                document.writeln("<li><a href=\"compare.html\">Compare Feature Sets</a></li>");
                document.writeln("<li><a href=\"sysreq.html\">System Requirements</a></li>");
                document.writeln("<li><a href=\"/purchase/tnpricing.html\">Titan FTP Server Pricing</a></li>");
                document.writeln("<li><a href=\"http://www.southrivertech.com/products/titanftp/relnotes.html\" target=\"_blank\"> Titan FTP Server Release Notes</a></li>");
                document.writeln("<li><a href=\"http://www.southrivertech.com/products/titanftp/verhist.html\" target=\"_blank\">Version History</a></li>");
                document.writeln("<li><a href=\"http://www.southrivertech.com/support/titanftp/v8/webhelp/titanftp.htm\" target=\"_blank\">Titan FTP Server Online Help</a></li>");
                document.writeln("<li><a href=\"/docs/datasheets/titanftp.pdf\" target=\"_blank\">Titan Product Data Sheet</a></li>");
                document.writeln("<li><a href=\"http://www.southrivertech.com/docs/titanftp/Titan_FTP_Server_Users_Guide_Master.pdf\" target=\"_blank\">Titan FTP Server User's Guide</a></li>");
                document.writeln("<li><a href=\"NewCodeTitan.html\">Repair Registration Code</a> </li>");
			document.writeln("</ul>");            
        }
        else if (program == 3) /* groupdrive */
        {
                document.writeln("<ul class=\"midlist\">");
                document.writeln("<li><a href=\"index.html\">Overview</a></li>");
                document.writeln("<li><a href=\"gdserver.html\">GroupDrive Server Details</a></li>");
                document.writeln("<li><a href=\"gdrive.html\">GroupDrive Client Details</a></li>");
                document.writeln("<li><a href=\"features.html\">Advanced Features</a></li>");
                document.writeln("<li><a href=\"sysreq.html\">System Requirements</a></li>");
                document.writeln("<li><a href=\"productdemonstrations.html\">GroupDrive Product Demonstrations</a></li>");
                document.writeln("<li><a href=\"/purchase/gdpricing.html\">GroupDrive Pricing</a></li>");
                document.writeln("<li><a href=\"/products/groupdrive/relnotes.html\" target=\"_blank\" >Release Notes</a></li>");
                document.writeln("<li><a href=\"/support/groupdrive/index.html\">GroupDrive Documentation</a></li>");
                document.writeln("<li><a href=\"/docs/datasheets/groupdrive.pdf\" target=\"_blank\">GroupDrive Product Data Sheet</a></li>");
                document.writeln("<li><a href=\"http://www.groupdrive.net/index.html\" target=\"_blank\" title=\"Cloud-based collaboration, storage, and backup solutions for business\">GroupDrive.net Hosted Services</a></li>");
                document.writeln("</ul>");
      }
        else if (program == 4) /* MFT */
        {
         }
        else if (program == 5) /* DMZ */
        {
                document.writeln("<ul class=\"midlist\">");
                document.writeln("<li><a href=\"index.html\">Overview</a></li>");
                document.writeln("<li><a href=\"sysreq.html\">System Requirements</a></li>");
                document.writeln("<li><a href=\"/support/dmzedge/index.html\">DMZedge Support</a></li>");
                document.writeln("<li><a href=\"/purchase/dmzpricing.html\">DMZedge Server Pricing</a></li>");
                document.writeln("<li><a href=\"/products/dmzedge/relnotes.html\" target=\"_blank\">Release Notes</a></li>");
	            document.writeln("</ul>");
        }
        else if (program == 6) /* WebDrive for Mac */
        {
                document.writeln("<ul class=\"midlist\">");
                document.writeln("<li><a href=\"index.html\">Overview</a></li>");
                document.writeln("<li><a href=\"sysreq.html\">System Requirements</a></li>");
                document.writeln("<li><a href=\"/appcasts/webdrive.xml\" target=\"_blank\">Release Notes</a></li>");
                document.writeln("<li><a href=\"/support/webdrive/mac/\">Support Options</a></li>");
                document.writeln("</ul>");
        }
        else if (program == 7) /* company */
	  {
                document.writeln("<ul class=\"midlist\">");
                document.writeln("<li><a href=\"index.html\">Company Information</a></li>");
                document.writeln("<li><a href=\"mgmt.html\">Management Team</a></li>");
                document.writeln("<li><a href=\"privacy.html\">Privacy Policy</a></li>");
                document.writeln("<li><a href=\"contact.html\">Contact Us</a></li>");
                document.writeln("<li><a href=\"career.html\">Career Opportunities</a></li>");
                document.writeln("<li><a href=\"copyright.html\">Copyright &amp; Legal Information</a></li>");
                document.writeln("</ul>");
	  }
	  else if (program == 8) /* solutions */
	  {
                document.writeln("<ul class=\"midlist\">");
                document.writeln("<li><a href=\"index.html\">Overview</a></li>");
                document.writeln("<li><a href=\"filetransfer.html\">File Transfer</a></li>");
                document.writeln("<li><a href=\"filecollab.html\">File Collaboration</a></li>");
                document.writeln("<li><a href=\"remwork.html\">Remote Workforce</a></li>");
                document.writeln("<li><a href=\"backup.html\">Backup</a></li>");
                document.writeln("<li><a href=\"dtsearch.html\">Desktop Search</a></li>");
                document.writeln("</ul>"); 
	  }
        else if (program == 10) /* Cornerstone MFT */
        {
                document.writeln("<ul class=\"midlist\">");
                document.writeln("<li><a href=\"/products/cornerstone/index.html\">Overview</a></li>");
                document.writeln("<li><a href=\"/products/cornerstone/modules.html\">Modules</a></li>");
                document.writeln("<ul>");
                document.writeln("<li><a href=\"/products/cornerstone/fips.html\">FIPS 140-2</a></li>");
                document.writeln("<li><a href=\"/products/cornerstone/webui.html\">Web Interface</a></li>");
                document.writeln("<li><a href=\"/products/cornerstone/pgp.html\">Real-time PGP</a></li>");
                document.writeln("<li><a href=\"/products/cornerstone/quicksend.html\">QuickSend Ad-Hoc</a></li>");
                document.writeln("<li><a href=\"/products/cornerstone/statstrack.html\">StatsTrack Reporting</a></li>");
                document.writeln("<li><a href=\"/products/cornerstone/dmzedge.html\">DMZ<font style=\"font-style: italic;\">edge</font> Server</a></li>");
                document.writeln("</ul>");
                 document.writeln("<li><a href=\"relnotes.html\" target=\"_blank\"> Release Notes</a></li>");
               document.writeln("<li><a href=\"/products/cornerstone/sysreq.html\">System Requirements</a></li>");
                document.writeln("<li><a href=\"/download/csindex.html\">Cornerstone Evaluation Software</a></li>");
                document.writeln("<li><a href=\"/purchase/cspricequote.html\">Cornerstone Pricing</a></li>");
                document.writeln("<li><a href=\"/support/cornerstone/\">Cornerstone Support</a></li>");
                document.writeln("<li><a href=\"/docs/datasheets/cornerstone.pdf\" target=\"_blank\">Cornerstone Datasheet</a></li>");
                document.writeln("<li><a href=\"/purchase/eula_cornerstone.pdf\" target=\"_blank\">End User License Agreement</a></li>");
       
                document.writeln("<li><a href=\"/docs/cornerstone/cssrthipaa.pdf\" target=\"_blank\">Case Study - MFT and HIPAA Compliance</a></li>");
				document.writeln("<li><a href=\"/docs/geninfo/govcapstmt.pdf\" target=\"_blank\">Government Capabilities Statement</a></li>");
                document.writeln("<li><a href=\"/docs/geninfo/qs-hipaa.pdf\" target=\"_blank\">HIPAA Quick Start Guide</a></li>");           
                document.writeln("</ul>");
        }
	  else /* all */
        {
        }
}



function box_nav_news(program)
{
        if (program == 1) /* webdrive */
        {
                document.writeln("<h3>WEBDRIVE NEWS</h3>");
                document.writeln("<ul class=\"bottomlist\">");
                document.writeln("<li><a href=\"/press/pr051215.pdf\" target=\"_blank\">WebDrive Provides PC Access to Apple .Mac iDisk Storage Accounts </a></li>");
                document.writeln("<li><a href=\"/press/pr051213.pdf\" target=\"_blank\">SRT Implements New Technology in WebDrive</a></li>");
                document.writeln("<li><a href=\"/press/pr051018-HKBN.pdf\" target=\"_blank\">Hong Kong Broadband Adopts WebDrive Technology</a></li>");
                document.writeln("<li><a href=\"/press/index.html\">More news... </a></li>");
                document.writeln("</ul>");       
        }
        else if (program == 2) /* titan */
        { 
                document.writeln("<h3>TITAN FTP SERVER NEWS</h3>");
                document.writeln("<ul class=\"bottomlist\">");
                document.writeln("<li><a href=\"/press/cs05scott.pdf\" target=\"_blank\">Titan FTP Server Provides Robust Data Marketing Solution</a> </li>");
                document.writeln("<li><a href=\"/press/index.html\">More news...</a> </li>");
                document.writeln("</ul>");                   
        }
        else if (program == 3) /* groupdrive */
        {
                document.writeln("<h3>GROUPDRIVE SERVER NEWS</h3>");
                document.writeln("<ul class=\"bottomlist\">");
                document.writeln("<li><a href=\"/press/cs05katzen.pdf\" target=\"_blank\">KATZEN International Selects GroupDrive</a></li>");
                document.writeln("<li><a href=\"http://www.theage.com.au/articles/2004/10/13/1097607285203.html\">GroupDrive reviewed in The Age</a></li>");
                document.writeln("<li><a href=\"/press/gd-finanreview.pdf\" target=\"_blank\">GroupDrive reviewed in the Australian Financial Review</a></li>");
                document.writeln("<li><a href=\"/press/index.html\">More news...</a></li>");
                document.writeln("</ul>");
        }
        else if (program == 4) /* MFT */
        {
         }
        else if (program == 5) /* DMZ */
        {
                 document.writeln("<h3>DMZEDGE SERVER NEWS</h3>");
             	 document.writeln("<ul class=\"bottomlist\">");
                document.writeln("<li><a href=\"/press/index.html\">More news...</a></li>");
                document.writeln("</ul>");
        }
        else if (program == 6) /* WebDrive for Mac */
        {
                document.writeln("<h3>WEBDRIVE FOR MAC NEWS</h3>");
                document.writeln("<ul class=\"bottomlist\">");
                document.writeln("<li><a href=\"/press/pr051215.pdf\" target=\"_blank\">WebDrive Provides PC Access to Apple .Mac iDisk Storage Accounts </a></li>");
                document.writeln("<li><a href=\"/press/pr051213.pdf\" target=\"_blank\">SRT Implements New Technology in WebDrive</a></li>");
                document.writeln("<li><a href=\"/press/pr051018-HKBN.pdf\" target=\"_blank\">Hong Kong Broadband Adopts WebDrive Technology</a></li>");
                document.writeln("<li><a href=\"/press/index.html\">More news... </a></li>");
                document.writeln("</ul>");       
        }
        else if (program == 10) /* Cornerstone */
        {
                document.writeln("<h3>CORNERSTONE MFT NEWS</h3>");
				document.writeln("<ul class=\"bottomlist\">");
                document.writeln("<li><a href=\"/press/index.html\">More news...</a> </li>");
                document.writeln("</ul>");                   
        }
        else /* all */
        {
        }
}



function box_nav_solutions(program)
{
        if (program == 1) /* webdrive */
        {
            document.writeln("<ul class=\"bottomlist\">");
            document.writeln("<li><a href=\"/solutions/backup.html\">Backup - WebDrive's automated backup utility</a></li>");
            document.writeln("<li><a href=\"/solutions/filetransfer.html\">File Transfer - Use WebDrive with Titan for a secure file transfer solution</a></li>");
            document.writeln("<li><a href=\"/solutions/dtsearch.html\">Desktop Search - Use WebDrive to extend desktop search capabilities to remote servers</a></li>");
            document.writeln("</ul>");
        }
        else if (program == 2) /* titan */
        {                 
        }
        else if (program == 3) /* groupdrive */
        {
        }
        else if (program == 4) /* MFT */
        {
        }
        else if (program == 5) /* DMZ */
        {
        }
        else if (program == 6) /* WebDrive for Mac */
        {
            document.writeln("<ul class=\"bottomlist\">");
            document.writeln("<li><a href=\"/solutions/backup.html\">Backup - WebDrive's automated backup utility</a></li>");
            document.writeln("<li><a href=\"/solutions/filetransfer.html\">File Transfer - Use WebDrive with Titan for a secure file transfer solution</a></li>");
            document.writeln("<li><a href=\"/solutions/dtsearch.html\">Desktop Search - Use WebDrive to extend desktop search capabilities to remote servers</a></li>");
            document.writeln("</ul>");
        }
        else /* all */
        {
        }
}

function box_nav_support(program)
{
        if (program == 1) /* webdrive */
        {
         }
        else if (program == 2) /* titan */
        {                 
        }
        else if (program == 3) /* groupdrive */
        {
        }
        else if (program == 4) /* MFT */
        {
        }
        else if (program == 5) /* DMZ */
        {
        }
        else if (program == 6) /* WebDrive for Mac */
        {
		}
		else if (program ==10) /* Cornerstone */
		{
            document.writeln("<h3>CORNERSTONE MFT SUPPORT OPTIONS</h3>");
	        document.writeln("<ul class=\"bottomlist\">");
            document.writeln("<li><a href=\"http://srthelpdesk.helpserve.com/\">Technical Support Help Desk</a></li>");
            document.writeln("<li><a href=\"http://srthelpdesk.helpserve.com/index.php?_m=knowledgebase&_a=view&parentcategoryid=46\">Cornerstone Knowledge Base</a></li>");
            document.writeln("<li><a href=\"/docs/cornerstone/index.html\">QuickStart Guides</a></li>");
            document.writeln("</ul>");
        }
        else /* all */
        {
        }
}
function box_nav_links(program)
{
        document.writeln("<h3>LINKS</h3>");
        if (program == 1) /* webdrive */
        {
         }
        else if (program == 2) /* titan */
        {                 
	        document.writeln("<ul class=\"bottomlist\">");
            document.writeln("<li><a href=\"http://www.faqs.org/rfcs/rfc765.html\">FTP Protocol Specification</a></li>");
            document.writeln("<li><a href=\"http://www.serverwatch.com/sreviews/article.php/3716556/Is-Titan-FTP-Server-a-Giant-in-the-File-Transfer-World.htm\">Titan FTP Server Review</a></li>");
            document.writeln("<li><a href=\"http://www.processor.com/editorial/article.asp?article=articles%2Fp2942%2F13p42%2F13p42.asp\">Titan FTP Server Case Study</a></li>");
            document.writeln("</ul>");
        }
        else if (program == 3) /* groupdrive */
        {
        }
        else if (program == 4) /* MFT */
        {
        }
        else if (program == 5) /* DMZ */
        {
        }
        else if (program == 6) /* WebDrive for Mac */
        {
		}
		else if (program ==10) /* Cornerstone */
		{
        }
        else /* all */
        {
        }
}




function box_nav_mainmenu()
{
 document.writeln("<ul class=\"navbar\" id=\"nav\">");
 document.writeln("<li><a href=\"/index.html\">Home</a></li>");
 document.writeln("<li><a href=\"/products/index.html\">Products</a>");
 document.writeln("<ul>");
 document.writeln("<li><a href=\"/products/groupdrive/index.html\">GroupDrive Collaboration Suite</a></li>");
 document.writeln("<li><a href=\"/products/cornerstone/index.html\">Cornerstone Managed File Transfer</a></li>");
 document.writeln("<li><a href=\"/products/titanftp/index.html\">Titan FTP Server</a></li>");
 document.writeln("<li><a href=\"/products/webdrive/index.html\">WebDrive FTP Client</a></li>");
 document.writeln("<li><a href=\"/products/dmzedge/index.html\">DMZ<font style=\"font-style: italic;\">edge</font> Server</a></li>");
 document.writeln("<li><a href=\"http://www.groupdrive.net/index.html\" title=\"Cloud-based collaboration, storage, and backup solutions for business\">GroupDrive.net Hosted Services</a></li>");
 document.writeln("</ul>");
 document.writeln("</li>");
 document.writeln("<li><a href=\"/solutions/index.html\">Solutions</a>");
 document.writeln("<ul>");
 document.writeln("<li><a href=\"/solutions/filetransfer.html\">File Transfer</a></li>");
 document.writeln("<li><a href=\"/solutions/filecollab.html\">File Collaboration</a></li>");
 document.writeln("<li><a href=\"/solutions/remwork.html\">Remote Workforce</a></li>");
 document.writeln("<li><a href=\"/solutions/backup.html\">Backup</a></li>");
 document.writeln("<li><a href=\"/solutions/dtsearch.html\">Desktop Search</a></li>");
 document.writeln("</ul>");			
 document.writeln("</li>");
 document.writeln("<li><a href=\"/customers/index.html\">Customers</a>");
 document.writeln("</li>");
 document.writeln("<li><a href=\"/partners/reseller.html\">Resellers</a></li>");
 document.writeln("<li><a href=\"/purchase/index.html\">Purchase</a>");
 document.writeln("<ul>");
 document.writeln("<li><a href=\"/purchase/gdpricing.html\">GroupDrive Collaboration Suite</a></li>");
 document.writeln("<li><a href=\"/purchase/cspricing.html\">Cornerstone Managed File Transfer</a></li>");
 document.writeln("<li><a href=\"/purchase/tnpricing.html\">Titan FTP Server</a></li>");
 document.writeln("<li><a href=\"/purchase/wdpricing.html\">WebDrive FTP Client</a></li>");
 document.writeln("<li><a href=\"/purchase/dmzpricing.html\">DMZ<font style=\"font-style: italic;\">edge</font> Server</a></li>");
 document.writeln("</ul>");		
 document.writeln("</li>");
 document.writeln("<li><a href=\"/download/index.html\">Download</a>");
 document.writeln("</li>");
 document.writeln("<li style=\"border-right: none;\"><a class=\"company\" href=\"/company/index.html\">Company</a>");
 document.writeln("<ul>");
 document.writeln("<li><a href=\"/company/mgmt.html\">Management Team</a></li>");
 document.writeln("<li><a href=\"/company/privacy.html\">Privacy Policy</a></li>");
 document.writeln("<li><a href=\"/company/contact.html\">Contact Us</a></li>");
 document.writeln("<li><a href=\"/company/career.html\">Career Opportunities</a></li>");
 document.writeln("<li><a href=\"/company/copyright.html\">Copyright &amp; Legal</a></li>");
 document.writeln("</ul>");
 document.writeln("</li>");
 document.writeln("</ul>");	
}

function box_nav_copyright()
{
    document.writeln("&copy; 2010 South River Technologies<sup style=\"line-height: 0;\">&reg;</sup>, Inc.");
}

function box_nav_footer()
{
    document.writeln("<div class=\"shadow_bottom\"><img class=\"shadow_bottom_left\" src=\"/_images/shadow_bottom_left.gif\" width=\"18\" height=\"22\" alt=\"\" /><img class=\"shadow_bottom_mid\" src=\"/_images/shadow_bottom_mid.gif\" width=\"945\" height=\"22\" alt=\"\" /><img class=\"shadow_bottom_right\" src=\"/_images/shadow_bottom_right.gif\" width=\"18\" height=\"22\" /></div>");
    document.writeln("<ul class=\"bottom_menu\" style=\"line-height: 1.6em;\">");
    document.writeln("<li><a href=\"/press/index.html\">News</a></li>");
    document.writeln("<li>|</li>");
    document.writeln("<li><a href=\"/support/index.html\">Support</a></li>");
    document.writeln("<li>|</li>");
    document.writeln("<li><a href=\"/sitemap.html\">Site Map</a></li>");
    document.writeln("<li>|</li>");
    document.writeln("<li><a href=\"/company/privacy.html\">Privacy Policy</a></li>");
    document.writeln("<li>|</li>");
    document.writeln("<li><a href=\"/company/contact.html\">Contact Us</a></li>");
    document.writeln("<li>|</li>");
    document.writeln("<li><script language=\"JavaScript\">box_nav_copyright();</script></li>");
    document.writeln("</ul>");
    document.writeln("<p style=\"clear: left; padding: 0 0 15px; text-align: center;\">Site Designed By: <br /> <a href=\"http://www.pomagency.com/\" target=\"_blank\"><img src=\"/_images/thepomerantzagency.gif\" width=\"132\" height=\"8\" alt=\"The Pomerantz Agency\" /></a></p>");
}