
function logoElementlogo()
{
			
	
	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+ 'index.html"';
				strHTML += ' target="" >';
				strHTML += '	<img src="' + strRelativePathToRoot + 'publishImages/logo_logoB.jpg"';
				strHTML += ' alt="Florida Beach Weddings by Sun Kissed Weddings/Cocoa Beach Weddings, Clearwater Beach Weddings, St. Pete Beach Weddings, Daytona Beach Weddings, Fort Desoto Beach Weddings, Sand Key Beach Weddings, Treasure Island Beach Weddings, Ponce Inlet Beach Weddings, New Smyrna Beach Weddings, and Melbourne Beach Weddings "';
				strHTML += ' border="0"';
				strHTML += ' width="300"';
				strHTML += ' height="114" >';
				strHTML += '</a>';

		
		document.write(strHTML);
	}
}

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