var player;

function loadPlayer( theFile, theImage, pageOfVideo )
{
	var width;
	var height;
	var backgroundColor;
	switch( pageOfVideo )
	{
		case 'services':
			width = 400;
			height = 225;
			backgroundColor = '000000';
			break;
		case 'index':
		default:
			width = 200;
			height = 110;
			backgroundColor = '330066';
      break;
	}
	
	var s1 = new SWFObject( 'http://www.purplewaveauction.com/flash/player.swf', 'player', width, height, '9' );
	s1.addParam( 'allowfullscreen', 'false' );
	s1.addParam( 'allowscriptaccess', 'always' );
	s1.addParam( 'flashvars', 'file='+theFile+'&controlbar=none&screencolor='+backgroundColor+'&stretching=fill&image='+theImage);
	s1.write( 'video' );
}