function setPartnerCode()
{
	/*  Get the partner code from the url and set the buy now buttons  */
	try
	{
		var tids=new Array("pw","pm","payg");
		var tref=location.href;
		var th=location.pathname;
		var lenref=tref.length;
		var idx=tref.indexOf('Ccode=');
		//alert('   tref  '+tref+'lenref  '+lenref+' code '+code+' idx '+idx);
		//alert(' code '+code+' idx '+idx);
		
		// If the partner code exists in the current URL
		if(idx != -1)
		{
			/* get the code */
			var code=tref.substring(idx,lenref);
			//alert(' code 2 '+code+' idx '+idx);
			for(tp=0;tp<tids.length;tp++)
			{
				var val=document.getElementById(tids[tp]).href;
				document.getElementById(tids[tp]).href=val+'&'+code;
				//alert('tp '+tp+' val '+val+' tids '+tids[tp]);
			}
		}
	}
	catch(e)
	{
		//alert(' e '+e);
	}
	
}