<?php

	
	//otherwise it says its html
	header("Content-Type: application/x-javascript");


	$k = array_merge($GLOBALS['HTTP_GET_VARS'],$GLOBALS['HTTP_POST_VARS']);

	$affid = 0;
	$ad = 0;
	
	//Grab our vars 
	if (isset($k['affid']))		$affid = $k['affid'];
	if (isset($k['ad']))		$ad    = $k['ad'];
	
	if ($ad == 0){
		echo "error, ad num supplied is zero";
		exit;
	}
	
	
	$h = 0; $w = 0;
	$link = "http://www.babesave.com/?affid=$affid&ad=$ad";
	
	
	if (($ad == 60) || ($ad == 25)){
		$h = 60; $w=120;
	}else if (($ad == 10)){
		$h = 60; $w = 468;
	}else if (($ad == 20) || ($ad == 21)){
		$h = 240; $w=120;
	}
	
	$now = time();
	
	if ($ad == 60) $link = "http://www.babesave.com/affiliates.html?affid=$affid&ad=$ad";
	
	$text = "";

	if ($ad == 34){
		$text = "<a href=\"http://www.babesave.com/?affid=$affid&ad=$ad\"><b>BabeSave</b></a>: bring liberty to the babes. <a href=\"http://www.babesave.com/?affid=$affid&ad=$ad\"><b>CLICK HERE!</b></a><img src=\"http://www.picclique.com/banner.php?affid=$affid&ad=$ad\" border=\"0\" width=\"1\" height=\"1\" alt=\"BabeSave: democracy in a bikini screensaver!\"><br>";
	}else if ($ad == 35){
		$text = "<a href=\"http://www.babesave.com/?affid=$affid&ad=$ad\"><b>BabeSave</b></a> is the <i>world\\'s first</i> democratic screensaver!   Sexy babes, awesome effects - pure eye candy.     BabeSave is a <a href=\"http://www.babesave.com/download.html?affid=$affid\"><b>free download!</b></a>     <a href=\"http://www.babesave.com/download.html?affid=$affid&ad=$ad\"><b>Click here now!</b></a><img src=\"http://www.picclique.com/banner.php?affid=$affid&ad=$ad\" border=\"0\" width=\"1\" height=\"1\" alt=\"BabeSave: democracy in a bikini screensaver!\"><br>";
		//$text = "WHAOD";
	}else if ($ad == 22){
		$text = "<table width=400 bgcolor =#000000 cellpadding=2 cellspacing=0><tr><td>".
			"<table width = \"100%\" bgcolor =#FFFFFF cellpadding=3 cellspacing=0 valign=center>".
			"<tr><td><font color=\"#000000\"><font size=\"+1\"><font face=\"Arial\">Featured bikini screensaver: <b>BabeSave</b>".
			"</font></font></font><br>".
			"<font face=arial size=-1>".
			"BabeSave is the world\\'s first democratic screensaver.  It is totally interactive - your votes decide which babes ".
			"are downloaded!<br><br></font><font face=arial size=-1><a href=\"http://babesave.com/?affid=$affid&ad=$ad\">".
			"BabeSave</a> is a <a href=\"http://babesave.com/download.html?affid=$affid&ad=$ad\">".
			"free download!</a> With tons of sexy babes".
			", tons of <a href = \"http://babesave.com/?affid=$affid&ad=$ad\">cool features</a>, BabeSave is amazing! ".
			"<a href=\"http://babesave.com/download.html?affid=$affid&ad=$ad\">Click here to download it now!</a> (free demo)<br>".
			"<table valign=bottom><tr><td><a href=\"$link\"><img src=\"http://www.picclique.com/images/babesave_banners/collage_banner_01_280w.jpg\"".
			" border=\"0\" width=\"280\" height=\"37\" alt=\"BabeSave: democracy in a bikini screensaver!\"></a>".
			"</font></td><td></table>".
			"</td><td>".
			"<a href=\"$link\"><img src=\"http://www.picclique.com/banner.php?affid=$affid&ad=$ad\" border=\"0\" width=\"140\"".
			" height=\"180\" alt=\"BabeSave: democracy in a bikini screensaver!\"></a></td></tr></table></td></tr></table>";
	}else if ($ad == 23){
		$text = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"".
  					"codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,79,0\".
  					"id=\"election_yest_07\" width=\"140\" height=\"160\">".
					"<param name=\"movie\" value=\"election_yest_07.swf\">".
					  "<param name=\"bgColor\" value=\"#FF6633\">".
					  "<param name=\"quality\" value=\"high\">".
					  "<param name=\"affid\" value=\"$affid\">".
					  "<param name=\"ad\" value=\"$ad\">".
					  "<param name=\"allowscriptaccess\" value=\"samedomain\">".
					  "<embed type=\"application/x-shockwave-flash\"".
					   "pluginspage=\"http://www.macromedia.com/go/getflashplayer\"".
					   "width=\"140\" height=\"160\"".
					   "name=\"election_yest_07_test\" src=\"election_yest_07_test.swf\"".
					   "bgcolor=\"#FF6633\" quality=\"high\"".
					   "allowScriptAccess=\"samedomain\"".
					  "></embed>".
					"</object>";
	}
	


	
	//if text is empty, do pic
	if ($text == ""){
		echo "document.write('<a href=\"$link\"><img src=\"http://www.picclique.com/banner.php?affid=$affid&ad=$ad\" border=\"0\" width=\"$w\" height=\"$h\" alt=\"BabeSave: democracy in a bikini screensaver!\"></a>');";
	}else{
		echo "document.write('$text');";
	}

?>