
function ejecutar_reproductor(){

    //esta es la url donde esta el div que llama al video, aun falta mejorar el script
	if (window.location.href=='http://www.beglobalstaff.biz/riocristalzinc/index.php?option=com_content&task=view&id=43&Itemid=27'){

		var fo = new SWFObject("FlowPlayer.swf", "FlowPlayer", "468", "350", "7", "#ffffff", true);
		
		// need this next line for local testing, it's optional if your swf is on the same domain as your html page
		
		fo.addParam("allowScriptAccess", "always");
		
		fo.addVariable("config", "{ showPlayListButtons: true, playList: [ {overlayId: 'play' }, { url: 'RCZ-website-video.flv' } ], initialScale: 'fit', fullScreenScriptURL:'full.js' }");
		fo.write("flowplayerholder");
		
		}

}
