function sayHello(aURL)
{
	alert("Heohoh" + aURL);	
	
}


function loadVideo(aURL, whereDiv,posterImage)
{
	
	// alert(">>>" + aURL);
	
	// alert(">>>" + whereDiv);
	  // Embed the player SWF:	            
            swfobject.embedSWF(
				"strobe/StrobeMediaPlayback.swf"
				, whereDiv
				, 530
				, 370
				, "10.1.0"
				, "expressInstall.swf"
				, {
                src: aURL,
                autoPlay: "false",
                verbose: true,
                controlBarAutoHide: "false",
                controlBarPosition: "bottom",
                poster: posterImage
            }
				, {
	                allowFullScreen: "true",
	                wmode: "direct"
	            }
				, {
	                name: whereDiv
	            }
			);
	
}
