var ie=document.all?1:0;
function player_overlay()
{
	var overlay = document.createElement('div');
	overlay.id = 'pdfoverlay';
	overlay.style.margin = '0px auto';
	overlay.style.background = '#000';
	overlay.style.position = 'absolute';
	overlay.style.top = document.documentElement.scrollTop+'px';
	overlay.style.left = '0px';
	overlay.style.zindex = '9900';
	overlay.style.width = document.documentElement.offsetWidth+'px';
	if (ie)	overlay.style.height = document.documentElement.offsetHeight+'px';
	else overlay.style.height = document.documentElement.clientHeight+'px';
	var value=5;
	overlay.style.opacity = value/10;
	overlay.style.filter = 'alpha(opacity=' + value*10 + ')';
	document.getElementById('center').appendChild(overlay);
}
function dirtpark_player_close()
{
	document.getElementById('center').removeChild(document.getElementById('subpdf'));
	document.getElementById('center').removeChild(document.getElementById('pdfoverlay'));	
}
function dirtpark_player_open(video)
{
	player_overlay();	
	var tr = document.createElement('div');

	width = 1075;
	height = 653;
	tr.innerHTML = '<div onClick="dirtpark_player_close();" style="display: block; border: 10px dashed transparent; position: absolute; z-index: 10000;margin-left: 935px; margin-top: 155px; cursor: pointer;"></div><div id="player" style="padding-left: 140px; padding-top: 190px;">A Böngésződ nem támogatja a videó lejátszót</div>';
	tr.style.backgroundImage = "url('"+livesite+'/images/player.gif'+"')";
	tr.style.position = 'absolute';
	tr.style.zindex = '10000';
	tr.style.margin = '0px auto';
	tr.id='subpdf';
	tr.style.width = width+'px';
	tr.style.height = height+'px';
	if (ie)
	{
         	tr.style.top = '0px';
		tr.style.top = ((document.documentElement.offsetHeight/2)-(height/2)+document.documentElement.scrollTop)+'px';
		tr.style.left = (document.documentElement.offsetWidth/2)-(width/2)+'px';
	} else {
         	tr.style.top = '0px';
		tr.style.top = ((document.documentElement.clientHeight/2)-(height/2)+document.documentElement.scrollTop)+'px';
		tr.style.left = (document.documentElement.offsetWidth/2)-(width/2)+'px';
	}
	document.getElementById('center').appendChild(tr);

	var so = new SWFObject(livesite+'/images/player.swf','mpl','800','350','9');
	so.addParam('allowscriptaccess','always');
	so.addParam('allowfullscreen','true');
	so.addParam('flashvars','&author=q&description=w&captions=e&duration=r&file='+livesite+'/videok/playlist.php/'+video+'&start=u&title=i&type=o&backcolor=000000&frontcolor=cccccc&lightcolor=cccccc&playlistsize=280&streamer=lighttpd&playlist=right&autostart=true');
//	alert('&author=q&description=w&captions=e&duration=r&file='+livesite+'/videok/playlist.php/'+video+'&start=u&title=i&type=o&backcolor=000000&frontcolor=cccccc&lightcolor=cccccc&playlistsize=200&streamer=lighttpd&playlist=right&autostart=true');
	so.write('player');
}
//setTimeout("dirtpark_player_open('a');",1000);
