function callThanksTo(){
	var mainObj = document.createElement('div');

	var imgObj = new Image();
	imgObj.src = 'http://www.thanksto.com/images/widProfile.gif';
	imgObj.border = "0";
	var aObj = document.createElement('a');
	aObj.href = 'http://www.thanksto.com/profile/'+ profile + '.html';
	aObj.target = '_blank';
	aObj.appendChild(imgObj);
	var divObj = document.createElement('div');
	divObj.appendChild(aObj);
	mainObj.appendChild(divObj);
	
	var imgObj = new Image();
	imgObj.src = 'http://www.thanksto.com/images/widThanks.gif';
	imgObj.border = "0";
	var aObj = document.createElement('a');
	aObj.target = '_blank';
	if(profile){
		aObj.href = 'http://www.thanksto.com/sayThanks.php?userProfile=' + profile;
		//aObj.href = 'http://www.thanksto.com/findRecipients.php?mode=page2&userProfile=' + profile;
	}else{
		aObj.href = 'http://www.thanksto.com/';
	}
	aObj.appendChild(imgObj);
	var divObj = document.createElement('div');
	divObj.appendChild(aObj);
	divObj.style.paddingTop = '10px';
	mainObj.appendChild(divObj);

	document.write(mainObj.innerHTML);
}