#!/usr/bin/perl
$dir="/var/www/vhosts/trconnection.com/private";
print qq{Content-type: text/javascript\n\n};
open(JS,"$dir$ENV{PATH_INFO}");
while(<JS>){
	print;
}
close(JS);
