
function logoElementHR()
{
			
	
	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 += '<a  href="' + strRelativePathToRoot+ 'hrtrans.html"';
				strHTML += ' target="_self" >';
				strHTML += '	<img src="' + strRelativePathToRoot + 'H_R_CURVED_LOGO_op_173x70_op_171x70.jpg"';
				strHTML += ' alt=""';
				strHTML += ' border="0"';
				strHTML += ' width="171"';
				strHTML += ' height="70" >';
				strHTML += '</a>';

		
		document.write(strHTML);
	}
}

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