#!/usr/bin/perl -T
######################
#¡¡author:glisten
#  http://www.dsl-speed.org
######################
&get_form_data;
&emptyid unless $FORM{'sid'};
$afid=$FORM{'sid'};
&gencode;

sub emptyid{
$login_page="http://www.adultworldmedia.com";
# Replace to your affiliate program url
print "Content-Type: text/html\n\n";
   print <<"~EOT~";
<HTML>
<HEAD>
   <TITLE>Generator error</TITLE>
<META HTTP-EQUIV=Refresh CONTENT="2; URL=index.shtml">
</HEAD>
<BODY>Please input Your affiliate ID <a href=\"$login_page\">Try again.</a></BODY>
</HTML>

~EOT~
exit;
}

sub gencode{
print "Content-Type: text/html\n\n";
   print <<"~EOT~";


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<TITLE>Cyborg Alien Sex Movies</TITLE>
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<table width="778" border="1" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td><table width="778" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td><img src="../../movieT/GG_top_movies_b.jpg" alt="galactic girls performing in alien sex and SciFi Porn movies" width="778" height="314" border="0"></td>
        </tr>
        <tr>
          <td><a href="http://tracker.zombaio.com/?$afid.7876960"><img src="../../template/images/divider.jpg" alt="download DVD quality movies inside Galactic Girls" width="778" height="27" border="0"></a></td>
        </tr>
        <tr>
          <td class="galactic-back">
<table width="778" border="0" cellspacing="3" cellpadding="3">
              <tr> 
                <td width="50%" align="center"><a href="GalacticLatex_01.wmv"><img src="movie_01.jpg" alt="Satine Phoenix in Alien tease" width="365" height="268" border="0"></a></td>
                <td width="50%" align="center"><a href="GalacticLatex_02.wmv"><img src="movie_02.jpg" alt="Satine Phoenix in Alien tease" width="365" height="268" border="0"></a></td>
              </tr>
              <tr> 
                <td align="center"><a href="GalacticLatex_03.wmv"><img src="movie_03.jpg" alt="Satine Phoenix in Alien tease" width="365" height="268" border="0"></a></td>
                <td align="center"><a href="GalacticLatex_04.wmv"><img src="movie_04.jpg" alt="Satine Phoenix in Alien tease" width="365" height="268" border="0"></a></td>
              </tr>
              <tr> 
                <td align="center"><a href="GalacticLatex2_01.wmv"><img src="movie_05.jpg" alt="Satine Phoenix in Alien tease" width="365" height="268" border="0"></a></td>
                <td align="center"><a href="GalacticLatex2_02.wmv"><img src="movie_06.jpg" alt="Satine Phoenix in Alien tease" width="365" height="268" border="0"></a></td>
              </tr>
              <tr> 
                <td align="center"><a href="GalacticLatex2_03.wmv"><img src="movie_07.jpg" alt="Satine Phoenix in Alien tease" width="365" height="268" border="0"></a></td>
                <td align="center"><a href="GalacticLatex2_04.wmv"><img src="movie_08.jpg" alt="Satine Phoenix in Alien tease" width="365" height="268" border="0"></a></td>
              </tr>
            </table></td>
        </tr>
        <tr>
          <td><img src="../../movieT/GG_bottom_movies.jpg" alt="scifi porn and alien sex movies and videos" width="778" height="249" border="0"></td>
        </tr>
      </table></td>
  </tr>
</table>
<br>
<div align="center"> <a href="http://tracker.zombaio.com/?$afid.7876960"><font size="5" face="Verdana, Arial, Helvetica, sans-serif"><strong><font size="6">CLICK 
  HERE TO ENTER GALACTIC GIRLS</font></strong></font></a> </div>
  <br>

<div align="center"><!--#include virtual="../../links.html"--></div>
<br>
<div align="center">GalacticGirls&#8482;<strong><br>
  </strong>18 U.S.C. 2257 Record-Keeping Requirements Compliance Statement at:<br>
  http://tracker.zombaio.com/?$afid.7876960 </div>
</body>
</html>


~EOT~
exit;
}

# Get form data
sub get_form_data {
	read(STDIN,$buffer,$ENV{'CONTENT_LENGTH'});
	if ($ENV{'QUERY_STRING'}) {
		$buffer = "$buffer\&$ENV{'QUERY_STRING'}"
	}
	@pairs = split(/&/,$buffer);
	foreach $pair (@pairs) {
		($name,$value) = split(/=/,$pair);
		$value =~ tr/+/ /;
		$value =~ s/\t//g;
		$value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
		$FORM{$name} = $value
	}
}

