<!--
function Querystring()
{
// get the query string, ignore the ? at the front.
	var querystring=location.search.substring(1,location.search.length);

// parse out name/value pairs separated via &
	var args = querystring.split('&');

// split out each name = value pair
	for (var i=0;i<args.length;i++)
	{
		var pair = args[i].split('=');

		// Fix broken unescaping
		temp = unescape(pair[0]).split('+');
		temp0 = temp.join(' ');
		
		temp = unescape(pair[1]).split('+');
		temp1 = temp.join(' ');
		
		this[temp0]=temp1;
	}

	this.get=Querystring_get;
}

function Querystring_get(strKey,strDefault)
{
	var value=this[strKey];
	if (value==null){value=strDefault;
}
	
	return value;
}
var qs=new Querystring();
//alert(qs.get("rows",""));
document.write('<IFRAME src="http://64.71.189.72/affi2/afficat_3col.asp?catid=0&catgid=0&affi='+affi+'" width="600" height="1100" frameborder="0" scrolling="no" ></IFRAME>');
-->