// Flash object
//  
// flash/intro_800_500.swf



<!--
// Version check based upon the values entered above in "Globals"
var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);

// Check to see if the version meets the requirements for playback
if (hasReqestedVersion) {
	// if we've detected an acceptable version
	// embed the Flash Content SWF when all tests are passed
	AC_FL_RunContent(
				"src", "flash/intro_800_500",
				"width", "800",
				"height", "500",
				"align", "middle",
				"menu", "false",
				"id", "detectionExample",
				"quality", "high",
				"bgcolor", "#bbbbbb",
				"name", "detectionExample",
				"allowScriptAccess","sameDomain",
				"type", "application/x-shockwave-flash",
				'codebase', 'http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab',
				"pluginspage", "http://www.adobe.com/go/getflashplayer"
	);
} else {  // flash is too old or we can't detect the plugin
	var alternateContent = '<div align="center"> <br /><br /> Witamy w serwisie <strong>Nowosielski Gotkowicz i partnerzy</strong> | Adwokaci i radcy prawni <br /><br /> Strona wymaga <strong>Adobe Flash Player 8</strong> <br /> i przeglądarki z włączoną obsługą formantów ActiveX.'
	+ '<br /><br />'
	+ ' 	<a href="http://www.adobe.com/go/getflash/"> <img src="images_buttons/getflashplayer.gif" alt="get flash player" border="0" /> </a> </div>';
	document.write(alternateContent);  // insert non-flash content
}
// -->


