/*
 * MAYNE FLASH BANNER
 *	If browser is Safari or Flash is not detected
 * a static image will be used
 * 
 * To use, call displayBanner() where needed
 */
 
var detect = navigator.userAgent.toLowerCase();

function checkIt(string)
{
	place = detect.indexOf(string) + 1;
	thestring = string;
	return place;
}

function displayBanner(flashpath,altimagepath)
{
	if(checkIt('safari')) {
		document.write('<img src="'+altimagepath+'" width="761" height="196" alt="Page Banner" style="display:block;" />');
	} else {
		var bannerFlash = new FlashObject(flashpath,"bannerflash","761","196",6,"#FFFFFF");
		bannerFlash.addParam("wmode", "transparent");
		bannerFlash.addParam("quality", "high");
		bannerFlash.altTxt = '<img src="'+altimagepath+'" width="761" height="196" alt="Page Banner" style="display:block;" />';
		bannerFlash.write();
	}
}