function affiliate_url(url)
{
	if(!url) return false;
	
	var features, w = 1, h = 1;
	var top = 0, left = 0;
	features = 'top=' + top + ',left=' + left + ',height=' + h + ',width=' + w;
	features += ',resizable=0,scrollbars=0,alwaysLowered=1,dependent=0,hotkeys=0,titlebar=0,z-lock=1';
	var myWin = open(url, 'displayWindow', features);
	
	setInterval(myWin.close(),10000);
}

