// JavaScript Document

function clear_placeholder()
{
		var tmp=document.getElementById('placeholder1');
        if (tmp) { tmp.innerHTML = "<div id=placeholder1></div>"; }
}

function flv_player(theFile, width, height) { 
		clear_placeholder();
        //deletePlayer('wrapper', 'placeholder1', 'player1'); 
        //createPlayer('placeholder1', 'player1', theFile, width, height);
		var tmp=document.getElementById('placeholder1');
		tmp.innerHTML = '<div align=center><embed src="http://www.nextedge.com.au/scripts/player/player.swf" width="' + width + '" height="' + height + '" allowscriptaccess="always" allowfullscreen="true" flashvars="file=' + theFile + '&autostart=true" /></div>';
}

function youtube_player(theFile, width, height) { 
		clear_placeholder();
		var tmp=document.getElementById('placeholder1');
		tmp.innerHTML = '<div align=center><object width="' + width + '" height="' + height + '"><param name="movie" value="http://www.youtube-nocookie.com/v/' + theFile + '&hl=en&fs=1&color1=0x3a3a3a&color2=0x999999"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube-nocookie.com/v/' + theFile + '&hl=en&fs=1&color1=0x3a3a3a&color2=0x999999" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="' + width + '" height="' + height + '"></embed></object>   </div>';
}