/*function redirect_toAffliate(obj,href)
{	
	obj.target='_blank'; 
	obj.href = href ;
	return false;
}
*/
function redirect_toAffliate(obj,href)
{	
	//document.location.target='_blank'; 
	//document.location.href = href ;
	window.open(href,'_blank');
	return false;
}