<!-- Begin

// Mini FLASH VIDEO v1.0 - SIZES 150 X 100 or 150 X 113

// oPTIONS YOU CAN EDIT



var flashwC		= 150			// WIDTH OF THE FLASH
var flashhA		= 113			// HEIGHT OF THE FLASH
var flashcon		= 17			// CONTROLS HEIGHT (17)
var Fswffile		= "150-113.swf"		// FLASH SWF FILE


var Fflvfile		= "video-1-1.flv"		// FLV FILE NAME (YOUR MOVIE)
var Ffolder		= "Video-mini"		// FLASH VIDEO FOLDER
var Fshowtime		= "yes"			// SHOW THE TIME
var Fautostart		= "no"			// AUTOSTART THE VIDEO


var flashskin		= "skins/purple.jpg"	// PLAYER SKIN
var flashColor		= "000000"		// BACKGROUND COLOR
var flashBorder		= "3"			// VIDEO BORDER THICKNESS
var flashBorderColor	= "000000"		// VIDEO BORDER COLOR




// CONTROLS ARE 17 PIXELS HIGH

// COPYRIGHT 2010 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE

// START VIDEO PLAYER CODE



var flashhC = flashhA+flashcon;



document.write('<table cellpadding="0" cellspacing="0" border="0" width="'+flashwC+'" height="'+flashhC+'" style="background-color: #'+flashColor+'; border: #'+flashBorderColor+' '+flashBorder+'px solid;"><tr><td align="center" valign="middle">');


// FLASH VIDEO WITH DETECTION VER 1.0


// 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", Ffolder+"/"+Fswffile+"?video="+Fflvfile+"&astart="+Fautostart+"&showtime="+Fshowtime+"&skin="+Ffolder+"/"+flashskin,
				"width", flashwC,
				"height", flashhC,
				"align", "middle",
				"id", "detectionExample",
				"quality", "high",
				"wmode", "transparent",
				"bgcolor", "#"+flashColor,
				"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 = '<span class="videotitle">Unable to view Flash</span><br><span class="videotext">'

  	+ 'Flash player version ' + GetSwfVer() + ' was detected in your browser.<br>'

  	+ 'This content requires the latest Flash Player.<br>'
   	+ '<a href="http://get.adobe.com/flashplayer/" target="_parent">Click Here to Get Flash<br><br>'
	+ '<img src="AV-FlashVideo-169/AVpicts/get_flashplayer.gif" border="0" alt="Get Flash"></a></span><br>';

;
	document.write(alternateContent);  // insert non-flash content



}


document.write('</td></tr></table>');


// -->
