function launchMedia(p_obj, p_flicker, p_msg)
{
	var msg;
	if(p_msg != null)
	{
		msg = p_msg;
	} else {
		if(p_flicker)
		{
			msg = 'This video contains scenes of an adult nature. \nThis video may not be suitable for users with photosensitive epilepsy. \nClick OK to continue.';
		} else {
			msg = 'This video contains scenes of an adult nature. \nClick OK to continue.';
		}
	}
	if(confirm(msg))
	{
		window.open(p_obj.href,p_obj.target,'status=no,scrollbars=yes,resizable=yes,width=409,height=269');
	}
}