
/************************************************************
 ** Media Player Functions
 ** HTML: javascript:PlayAudio(id_number)
 ** The "return false" makes it so the window does not follow the href.
 ***********************************************************/
function PlayAudio(id) {
	window.open('http://www.cbtb.org.au/index.php/player/player/' + id,
		'sermonvideo',
		'height=495, width=443,,left=356,top=100, scrollbars=no');
	return false;
} 