 /* 
 jQuery(document).ready(function(){ jQuery('.ytplayerfullscreen').colorbox({iframe:true, innerWidth:425, innerHeight:344});

 		 jQuery('.ytplayerfullscreen').click(function(){ ytplayer.stopVideo(); } );
 });
*/			
			
  
        	var myListener = new Object();
        	
        	/**
        	 * Initialisation
        	 */
        	myListener.onInit = function()
        	{
        		
        	};
        	/**
        	 * onClick event on the video
        	 */
        	myListener.onClick = function()
        	{
        	};
        	/**
        	 * onKeyUp event on the video
        	 */
        	myListener.onKeyUp = function(pKey)
        	{
        	};
        	/**
        	 * onComplete event
        	 */
        	myListener.onFinished = function()
        	{
        	};
        	/**
        	 * Update
        	 */
        	myListener.onUpdate = function()
        	{
        	
        	};
        	
        	function getFlashObject()
        	{
        		return document.getElementById("myFlash");
        	}
            function play()
            {
            	
                getFlashObject().SetVariable("method:play", "");
            }
            function pause()
            {
                getFlashObject().SetVariable("method:pause", "");
            }
            function stop()
            {
                getFlashObject().SetVariable("method:stop", "");
            }
            function setWidth()
            {
            	var width = document.getElementById("inputWidth").value;
            	getFlashObject().width = width+"px";
            }
            function setHeight()
            {
            	var height = document.getElementById("inputHeight").value;
            	getFlashObject().height = height+"px";
            }
            function setPosition()
            {
            	var position = document.getElementById("inputPosition").value;
            	getFlashObject().SetVariable("method:setPosition", position);
            }
            function setVolume()
            {
            	var volume = document.getElementById("inputVolume").value;
            	getFlashObject().SetVariable("method:setVolume", volume);
            }
          
       

