function ShowVideo() {
	var s = new SWFObject("flvplayer.swf","single","384","300","7");	
	s.addParam("allowfullscreen","true");	
	s.addVariable("file","media/demo.flv");	
	s.addVariable("displayheight", "9999");	
	s.addVariable("showdigits", "false");	
	s.addVariable("showicons", "false");	
	s.addVariable("autostart", "true");	
	s.write("player");
}


$(document).ready(function(){
	$('#legal').click(function() {
		window.open(this.href, '<?= CF_SITENAME ?>', 
		'status=0,toolbar=0,resizable=1,width=400,height=400');
		return false;
	});
	
	$('#authors').click(function(){
		window.open(this.href, '<?= CF_SITENAME ?>', 
		'status=0,toolbar=0,resizable=1,width=400,height=400');
		return false;
	});
	
});