
function logoElementLogomain()
{
			
	
	if (navigator.userAgent.indexOf("Mozilla/3") != -1)
	{
		var msg = 'Sorry, since you are using an old version of Netscape, you may not be able to access all the pages in this Web site.';	
		document.write(msg);
	}
	else 
	{
		
		var strHTML = '';

				strHTML += '<img src="' + strRelativePathToRoot + 'publishImages/logo_LogomainA.jpg"';
				strHTML += ' width="800"';
				strHTML += ' height="5718"';
				strHTML += ' alt="" >';

		
		document.write(strHTML);
	}
}

		
function netscapeDivCheckLogomain()
{
	
				 			
				
				
	var strAppName = navigator.appName;
	var appVer = parseFloat(navigator.appVersion);
								
	if ( (strAppName == "Netscape") &&
		(appVer >= 4.0 && appVer < 5) ) {  
		document.write("</DIV>");
	}
}
			
			
		
logoElementLogomain();
			
		
netscapeDivCheckLogomain();
	