
function changevideo(video,image)
{
	//alert(document.getElementById('player2').FlashVars);
	
	/*
	$.ajax({
	'url':'http://localhost/jwplayer/change.php',
	'type':'POST',
	'data':'video='+video,
	'success':function(response){
	document.getElementById('player').innerHTML=response;
	}
	});
	*/		
	var str='';
	
	/*str+='<embed type="application/x-shockwave-flash" id="player2"';
	str+='name="player2" src="jwplayer/player.swf" width="550" height="312"	allowscriptaccess="always" play="auto"' ;
	str+='allowfullscreen="true" FlashVars="file='+video+'&image='+image+'&skin=jwplayer/players.swf" wmode="opaque"/>';
*/
	str+='<object id="player" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" name="player" width="550" height="312"><param name="movie" value="'+video+'&hl=en_US&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="wmode" value="transparent"><embed src="'+video+'&hl=en_US&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" wmode="transparent" width="550" height="312"></embed></object>';

	document.getElementById('LeftImage').innerHTML=str;	
}

