
var dlg;


function playvideo(id)
{
	if(id==1)
	{
		dlg = new YAHOO.widget.Dialog("dialogFlashContainer", {
		width:"512px",
		height:"288px",
		zindex:999,
		fixedcenter:true,
		modal:true,
		visible:false,
		draggable: false
	});

		document.getElementById('dialogFlashContainer').innerHTML='<embed width="512" height="288" flashvars="file=http://img.fi/mediacity/upload/ny_game_on_hires.flv&autostart=true&controlbar=none" wmode="opaque" allowscriptaccess="always" allowfullscreen="true" quality="high" bgcolor="#ffffff" name="bannerswf" id="bannerswf" style="" src="http://www.longtailvideo.com/jw/embed/player.swf" type="application/x-shockwave-flash"/>';
	}

	if(id==2)
	{
		dlg = new YAHOO.widget.Dialog("dialogFlashContainer", {
		width:"905px",
		height:"625px",
		zindex:999,
		fixedcenter:true,
		modal:true,
		visible:false,
		draggable: false,
		effect:{effect:YAHOO.widget.ContainerEffect.FADE,duration:0.75}
	});

		document.getElementById('dialogFlashContainer').innerHTML='<img onclick="dlg.hide();" src="http://mediacity/upload/ST_flyer.jpg" alt="no picture" />';
	}

	if(id==3)
	{
		dlg = new YAHOO.widget.Dialog("dialogFlashContainer", {
		width:"898px",
		height:"625px",
		zindex:999,
		fixedcenter:true,
		modal:true,
		visible:false,
		draggable: false
	});

		document.getElementById('dialogFlashContainer').innerHTML='<img onclick="dlg.hide();" src="http://mediacity.fi/upload/The_Naked_Truth_flyer.jpg" alt="no picture" />';
	}

	if(id==4)
	{
		dlg = new YAHOO.widget.Dialog("dialogFlashContainer", {
		width:"1000px",
		height:"626px",
		zindex:999,
		fixedcenter:true,
		modal:true,
		visible:false,
		draggable: false
	});

		document.getElementById('dialogFlashContainer').innerHTML='<img onclick="dlg.hide();" src="http://mediacity/upload/AnyOne_Can_Play_flyer.jpg" alt="no picture" />';
	}
	
	

	dlg.render();	
	
	dlg.show();
	
	dlg.hideEvent.subscribe(killplayer);
	
	return false;
}


function killplayer()
{
	document.getElementById('dialogFlashContainer').innerHTML="";
}

