function includePlayer(file, type)
{
	switch(type)
	{
		case 'audio':
			height = 24;
		break;
		case 'video':
			height = 258;
		break;
	}
	
	 jwplayer('player').setup({
    'flashplayer': '/flash/player.swf',
    'file': file,
    'controlbar': 'bottom',
		'autostart': 'true',
    'width': '300',
    'height': height,
		'plugins': 'gapro-1',
		'gapro.accountid': 'UA-25048380-1',
		'gapro.trackstarts': 'true',
		'gapro.trackpercentage': 'true',
		'gapro.tracktime': 'true',
  });
}
