/* 
 * nlflowplayer.js - 1/29/2010
 *
 * This file is copyright Brian Kelley, it may not be duplicated
 * in any way without the consent of the above author(s).
 *
 * BrianKStein [at] gmail.com
 */
 
function NLflowplayer(divName,siteKey)
{
	flowplayer(divName, "http://www.netliteracy.org/flowplayer/flowplayer.commercial-3.1.5.swf",{
		/* 
			relative path to the logo. this can a JPG, PNG or SWF file. 
			NOTE: the logo can only be changed in commercial versions 
		*/ 
		
		key: siteKey,
		
		logo: { 
		 
			// default logo and its position 
			url: 'http://www.netliteracy.org/flowplayer/flow_player_nl_watermark.png', 
			bottom: 30, 
			right: 10, 
			opacity: 0.75, 
		 
			// for SWF-based logos you can supply a relative size (to make the logo larger in fullscreen) 
			//width: '6.5%', 
			//height: '6.5%', 
		 
			// if set to false, then the logo is also shown in non-fullscreen mode 
			fullscreenOnly: false, 
		 
			// time to display logo (in seconds). 0 = show forever 
			displayTime: 0, 
		 
			/* 
				if displayTime > 0 then this specifies the time it will take for 
				the logo to fade out. this happens internally by changing the opacity 
				property from its initial value to full transparency. 
				value is given in milliseconds. 
			*/ 
			fadeSpeed: 0, 
		 
			// for commercial versions you can specify where the user is redirected when the logo is clicked 
			linkUrl: 'http://www.netliteracy.org/' 
		}
		/*controls: {  
	  
			// location of the controlbar plugin  
			url: 'http://www.netliteracy.org/flowplayer/flowplayer_controls.swf'
		}*/
	});
}