	var minPercent = 10;
	var maxPercent = 50;
	var minPixels = 125;
	var maxPixels = 425;
	var idealWidth = 12.5;
	var idealInPixels = false;

// browser identities - set all false initially
	var netscape4 = 0; 
	var netscape6 = 0; 
	var netscape7 = 0; 
	var iexplorer4 = 0;
	var iexplorer5 = 0;
	var iexplorer6 = 0;
	var otherbrowser=0;

//findbrowser();

//	function findBrowser()
//	{
		if (navigator.appName.toLowerCase().indexOf("netscape") > -1) 
		{
			if (navigator.appVersion.substring(0, 1) >= 5){netscape6 = 1;}
			else {netscape4=1;}
		}
		else if (navigator.appName.toLowerCase().indexOf("internet explorer") > -1)
		{
			
			if (navigator.appVersion.indexOf("msie6") ) {iexplorer6 = 1;}
			else if (navigator.appVersion.indexOf("msie5") ){iexplorer5 = 1;}
			else {iexplorer4=1;}
		}
		else
		{
			otherbrowser = 1;
		}

//	}

//	function getScreenSize()
//	{
		var minimum = window.screen.availWidth * minPercent / 100;
		if (minimum < minPixels)
		{
			minimum = minPixels;
		}

		var maximum = window.screen.availWidth * maxPercent / 100;
		if (maximum > maxPixels)
		{
			maximum = maxPixels;
		}

		var ideal;
		if (idealInPixels)
		{
			ideal = idealWidth;
		}
		else
		{
			ideal = Math.round(window.screen.availWidth * idealWidth / 100);
		}
		if (ideal < minimum)
		{
			ideal = Math.round(minimum);
		}
		if (ideal > maximum)
		{
			ideal = Math.round(maximum);
		}
//	}

if (netscape4 == 1)
{
	document.write("<CENTER>");
	document.write("<A HREF=\"default.html\">Home</A>");
	document.write(" | <A HREF=\"products.html\">Products</A>");
	document.write(" | <A HREF=\"whatsnew.html\">New</A>");
	document.write(" | <A HREF=\"downloads.html\">Downloads</A>");
	document.write(" | <A HREF=\"support.html\">Support</A>");
	document.write(" | <A HREF=\"techref.html\">References</A>");
	document.write(" | <A HREF=\"feedbackform.asp\">Feedback</A>");
	document.write("</CENTER>");
}
else
//  if (iexplorer6 == 1)
{
document.write('<table width=100% margin=0 border=1 frame=hsides rules=cols bordercolor=#B00040 cellspacing=0 cellpadding=0><tr><td valign=top >');

document.write('<table width=100% margin=0 border=0 cellspacing=0 cellpadding=0><tr>');
document.write('<td valign=top margin=0 >');
document.write('<div class="navBar">');

document.write('<div class="navBlockStart">Home</div>');
document.write('<a href="default.html" class="navEntry">Home</a>');
document.write('<a href="sitemap.html" class="navEntry">Site Map</a>');
document.write('<div class="navBlockEnd"></div>');


document.write('<div class="navBlockStart">Products</div>');
document.write('<a href="products.html" class="navEntry">Description</a>');
document.write('<a href="downloads.html" class="navEntry">Downloads</a>');
document.write('<a href="licreqform.asp" class="navEntry">Licensing</a>');
document.write('<div class="navBlockEnd"></div>');

document.write('<div class="navBlockStart">Support</div>');
document.write('<a href="faq.html" class="navEntry" >FAQs</a>');
document.write('<a href="problist.html" class="navEntry" >Problems</a>');
document.write('<a href="probreptform.asp" class="navEntry">Submit Problem</a>');
document.write('<a href="suggestform.asp" class="navEntry">Wish List</a>');
document.write('<div class="navBlockEnd"></div>');

document.write('<div class="navBlockStart">References</div>');
document.write('<a href="refSNMP.html" class="navEntry">SNMP</a>');
document.write('<a href="refMIBS.html" class="navEntry">MIB RFCs</a>');
document.write('<a href="newSNMP.html" class="navEntry">SNMP WG</a>');
document.write('<a href="othersites.html" class="navEntry">SNMP Sites</a>');
document.write('<div class="navBlockEnd"></div>');

document.write('<div class="navBlockStart">Free Tools</div>');
document.write('<a href="trapAppHome.html" class="navEntry">TrapApp</a>');
document.write('<a href="oidlookup.asp" class="navEntry">MIB Lookup</a>');
document.write('<a href="entlookup.asp" class="navEntry">IANA Lookup</a>');
document.write('<a href="cscHome.html" class="navEntry">CSC for PIC18</a>');
document.write('<div class="navBlockEnd"></div>');


document.write('<div class="navBlockStart">Company</div>');
document.write('<a href="profile.html" class="navEntry">About Us</a>');
document.write('<a href="customers.html" class="navEntry">Customers</a>');
document.write('<a href="contact.html" class="navEntry">Contact Us</a>');
document.write('<a href="feedbackform.asp" class="navEntry">Feedback</a>');
document.write('<div class="navBlockEnd"></div>');

document.write('<div class="navBlockStart">New</div>'); 
document.write('<a href="whatsnew.html" class="navEntry">New releases</a>');
document.write('</div>');
document.write('<div class="navBlockEnd"></div>');


document.write('</td>');
document.write('</tr></table>');
document.write('</td>');

document.write('<td class="content">');
}

