<?php

$site_page = 'fb_install_exe';
// !!!	$site_page = 'fb_install_exe' is used by getMSCampaign()	 !!!
// $site_page must be set before getMSCampaign() call (before including of cf-lib.commonheader.php )

require( '../../site.defs.php' );
require( SITE_LIB.'cf-lib.db.php' );
require( SITE_LIB.'cf-lib.charstat.php' );

require( SITE_LIB.'cf-lib.commonheader.php' );


$max_download_time = 120;
$download_delay = 2;

set_time_limit( $max_download_time );
sleep( $download_delay );

updateMarketingStats( 'lp_visit' );

header("Content-Type: application/octet-stream");
readfile(SITE_ROOT.'download/y/FiestaBarInstall.exe');

?>