<?php 
error_reporting(E_NONE);
header('Content-type: application/javascript');
header("cache-control: must-revalidate; max-age: 2592000");
header("expires: ".gmdate("D, d M Y H:i:s", time()+2592000)." GMT");
ob_start("ob_gzhandler");
if (file_exists('jquery.min.js'))
{
    require_once ('jquery.min.js');
}
if (file_exists('getUri.min.js'))
{
    require_once ('getUri.min.js');
}
if (file_exists($_REQUEST['customerFile'].'.js'))
{
    require_once ($_REQUEST['customerFile'].'.js');
}
?>
