window.onload=function()
{
	var afnumber = readcookie("afcookie");
	if (afnumber != null)
	{
		document.getElementById('afid').value = readcookie("afcookie");
		document.getElementById('aflink').value = "<a href=\"http://scripts.affiliatefuture.com/AFClick.asp?affiliateID=" + afnumber + "&merchantID=3492&programmeID=9342&mediaID=0&tracking=&url=" + document.location.href + "\">" + document.title + "</a>";
		document.getElementById('afurl').value = "http://scripts.affiliatefuture.com/AFClick.asp?affiliateID=" + afnumber + "&merchantID=3492&programmeID=9342&mediaID=0&tracking=&url=" + document.location.href;
	}
}

function affiliatelink (afform)
{
	var afcookiedate = new Date();
	afcookiedate.setTime(afcookiedate.getTime() + 5184000000);
	var expires = "expires="+afcookiedate.toGMTString();
	document.cookie = 'afcookie=' + afform.afid.value + ';' + expires + '; path=/';
	document.getElementById('aflink').value = "<a href=\"http://scripts.affiliatefuture.com/AFClick.asp?affiliateID=" + readcookie("afcookie") + "&merchantID=3492&programmeID=9342&mediaID=0&tracking=&url=" + document.location.href + "\">" + document.title + "</a>";
	document.getElementById('afurl').value = "http://scripts.affiliatefuture.com/AFClick.asp?affiliateID=" + readcookie("afcookie") + "&merchantID=3492&programmeID=9342&mediaID=0&tracking=&url=" + document.location.href;
}

function readcookie(name)
{
	var nameEQ = name + "=";
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++) {
		var c = ca[i];
		while (c.charAt(0)==' ') c = c.substring(1,c.length);
	if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
	}
	return null;
}
function SelectAll(id) {
    document.getElementById(id).focus();
    document.getElementById(id).select();
}
