function changeVideo(video_id, product_id)
{
	//var code = '<embed id="video" width="640" height="380" flashvars="file=http://www.insidegamer.nl/video/playlist_jw.php?id='+video_id+',s2&displayheight=360&overstretch=false&usefullscreen=true&autostart=true&backcolor=0x8E9292&frontcolor=0xFFFFFF&bufferlength=6&smoothing=false&linkfromdisplay=true&callback=http://www.insidegamer.nl/video/video_count_jw.php" allowfullscreen="true" quality="high" name="player" style="" src="http://www.insidegamer.nl/video/jwplayer.swf" type="application/x-shockwave-flash">';
	var code = '<embed width="640" height="379" flashvars="file=http://www.insidegamer.nl/video/playlist_jw.php?id=' + video_id +',s2&amp;config=' + baseUrl() + '/videoconfig.xml&amp;autostart=true&amp;debug=none&amp;frontcolor=0xFFFFFF&amp;backcolor=0x8E9292&amp;dcinstream.ad.a.tag=http://ad.nl.doubleclick.net/pfadx/p4442.gamesguide/content;sz=640x360;kw=' + wlrcmd + '&amp;yourlytics.callback=http://www.insidegamer.nl/video/video_count_jw.php?title=ig|' + video_id +'&amp;plugins=yourlytics-1,dcinstream,http://vplayer.ilsemedia.nl/swf/plugins/advertising/dartcontrol.swf" wmode="opaque" allowscriptaccess="always" allowfullscreen="true" quality="high" bgcolor="#EEEEEE" name="ply" id="ply" style="" src="http://vplayer.ilsemedia.nl/swf/im_player.swf" type="application/x-shockwave-flash"/>';
	
	document.getElementById('video').innerHTML = code;
	
	$('#videoinfo').html('Bezig met laden...');
	
	if(product_id > 0)
	{
		$.get(baseUrl() + '/video/info/no_layout/yes/product_id/'+product_id+'/', null, function(data) { $('#gameinfo').html(data) });
	}
	else
	{
		$('#gameinfo').html('');
	}

	$.get(baseUrl() + '/video/info/no_layout/yes/video_id/'+video_id+'/', null, function(data) { $('#videoinfo').html(data) });
}