// Set default variables;
var thisAffID = 1;
var thisImgID = 126;
var thisImgType = 1;
var thisLinkLoc = 1;
var fileType = "jpg";
var subLocation = "/index.cfm";

//var thisAffID = 15;
//var thisImgID = 640;
var strURL = document.getElementById("pongoBanner").src;

//Parse out affiliateID from the URL string
var par = strURL.split(/[?&]/);
for(var i=1;i<par.length;i++){
    if(strURL.match(/affiliateID=(\d+)/i)) thisAffID = RegExp.$1;
	if(strURL.match(/img=(\d+)/i)) thisImgID = RegExp.$1;
	if(strURL.match(/type=(\d+)/i)) thisImgType = RegExp.$1;
	if(strURL.match(/loc=(\d+)/i)) thisLinkLoc = RegExp.$1;
 }

if(thisImgType == 2)
	{fileType = "gif";}
else if(thisImgType == 3)
	{fileType = "png";}
if(thisLinkLoc == 2)
	{subLocation = "/extras.cfm";}
else if(thisLinkLoc == 3)
	{subLocation = "/tellafriend.cfm";}

if(location.hostname != "www.pongoresume.com" && location.hostname != "pongoresume.synthenet.com")
{
	siteURL = "www.pongoresume.com";
}
else
{
	siteURL = location.hostname;
}
//Include CFM file to perform database updates
document.write('<script src="' + location.protocol + '//' + siteURL + '/clickthroughs/qry_clickThroughs_banner_add.cfm?affiliateID=' + thisAffID + '&imgID=' + thisImgID + '"></scr' + 'ipt>');

document.write("<a href='" + location.protocol + "//" + siteURL + subLocation + "?affiliateID=" + thisAffID + "&imgID=" + thisImgID + "' onClick=\"javascript: pageTracker._trackPageview('/internal" + subLocation + "?affiliateID=" + thisAffID + "&imgID=" + thisImgID + "');\"><img border='0' src='" + location.protocol + "//" + siteURL + "/images/master/" + thisImgID + "." + fileType + "'></a>");

//Create link and image to display on affiliate page
/*
document.write("<a href='" + location.protocol + "//" + siteURL + subLocation + "?affiliateID=" + thisAffID + "&imgID=" + thisImgID + "'><img border='0' src='" + location.protocol + "//" + siteURL + "/images/master/" + thisImgID + "." + fileType + "'></a>");
*/